結果
問題 |
No.280 歯車の問題(1)
|
ユーザー |
👑 |
提出日時 | 2020-02-12 00:59:49 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 212 bytes |
コンパイル時間 | 645 ms |
コンパイル使用メモリ | 69,260 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-01 14:06:26 |
合計ジャッジ時間 | 2,915 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 31 |
ソースコード
#include <iostream> #include <vector> using namespace std; int main(){ int n;cin>>n; vector<int> A(n); for(int i = 0; n > i; i++){ cin>>A[i]; } cout << A[n-1] << "/" << A[0] << endl; }