結果
問題 |
No.280 歯車の問題(1)
|
ユーザー |
![]() |
提出日時 | 2019-09-10 12:00:52 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 207 bytes |
コンパイル時間 | 1,259 ms |
コンパイル使用メモリ | 157,648 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-02 16:15:16 |
合計ジャッジ時間 | 4,099 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 31 |
ソースコード
#include <bits/stdc++.h> using namespace std; int arr[51]; int main() { int Q; cin >> Q; for (int i = 1; i <= Q; i++) cin >> arr[i]; cout << arr[Q] << "/" << arr[1] << endl; return 0; }