結果
問題 | No.26 シャッフルゲーム |
ユーザー |
![]() |
提出日時 | 2017-08-05 00:27:44 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 334 bytes |
コンパイル時間 | 552 ms |
コンパイル使用メモリ | 63,188 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-11 20:58:01 |
合計ジャッジ時間 | 1,138 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
#include <iostream> #include <vector> #include <string> #include <algorithm> #include <math.h> using namespace std; int main() { int n,m; cin >> n >> m; for(int i = 0;i < m;i++){ int a,b; cin >> a >> b; if(a == n)n = b; else if(b == n)n = a; } cout << n << endl; return 0; }