結果
問題 | No.280 歯車の問題(1) |
ユーザー |
![]() |
提出日時 | 2018-07-10 13:36:06 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 165 bytes |
コンパイル時間 | 2,236 ms |
コンパイル使用メモリ | 194,048 KB |
最終ジャッジ日時 | 2025-01-06 11:54:00 |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 1 WA * 30 |
ソースコード
#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[0]<<'/'<<a.back()<<endl; }