結果
問題 |
No.280 歯車の問題(1)
|
ユーザー |
![]() |
提出日時 | 2018-07-10 13:36:47 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 13 ms / 1,000 ms |
コード長 | 165 bytes |
コンパイル時間 | 1,640 ms |
コンパイル使用メモリ | 194,552 KB |
最終ジャッジ日時 | 2025-01-06 11:54:13 |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 31 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int n; cin>>n; vector<long> a(n); for(auto& e: a) cin>>e; cout<<a.back()<<'/'<<a[0]<<endl; }