結果
問題 | No.26 シャッフルゲーム |
ユーザー |
![]() |
提出日時 | 2020-03-22 12:40:48 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 252 bytes |
コンパイル時間 | 1,801 ms |
コンパイル使用メモリ | 164,668 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-24 17:11:00 |
合計ジャッジ時間 | 2,224 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
#include <bits/stdc++.h> using namespace std; template<typename T> void fin(T a){ cout<<a<<endl; exit(0); } signed main(){ int m,n;cin>>m>>n; while(n--){ int a,b;cin>>a>>b; if(a==m||b==m)m=a+b-m; } cout<<m<<endl; }