結果
問題 |
No.280 歯車の問題(1)
|
ユーザー |
![]() |
提出日時 | 2016-01-24 22:08:41 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 288 bytes |
コンパイル時間 | 478 ms |
コンパイル使用メモリ | 59,864 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-21 16:10:16 |
合計ジャッジ時間 | 3,167 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 31 |
ソースコード
#include <iostream> #include <vector> #include <string> #include <algorithm> using namespace std; int main() { cin.tie(0); ios::sync_with_stdio(false); int n; cin >> n; string s1, s2; cin >> s1; for(int i = 0; i < n - 1; i++) { cin >> s2; } cout << s2 << "/" << s1 << endl; }