UVa 10387

題目

http://domen111.github.io/UVa-Easy-Viewer/?10387

有一張長寬分別為 $a, b$ 的桌子,在他的正中央有一顆球,這顆球會以某個速度 $v$ ,以角度 $A$ 在桌子碰撞,分別在桌子的直向與橫向處撞擊 $m, n$ 次後回到初始位置

求這顆球的初速 $v$ 以及初始角度 $A$

閱讀全文 »

TOJ 115

題目

https://toj.tfcis.org/oj/pro/115/

Code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//By Koios1143
#include<iostream>
using namespace std;
string arr[11];
int main(){
for(int i=0 ; i<11 ; i++){
arr[i] = "EMPTY";
}
int n,m;
string s;
cin>>n;
while(n--){
cin>>s>>m;
arr[m]=s;
}
for(int i=1 ; i<=10 ; i++){
cout<<arr[i]<<"\n";
}
return 0;
}
閱讀全文 »