結果
問題 | No.26 シャッフルゲーム |
ユーザー | koba-e964 |
提出日時 | 2015-05-24 00:46:17 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 217 bytes |
コンパイル時間 | 988 ms |
コンパイル使用メモリ | 157,948 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-06 06:23:47 |
合計ジャッジ時間 | 1,419 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | WA | - |
testcase_09 | AC | 1 ms
6,940 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:6:5: warning: ‘n’ is used uninitialized [-Wuninitialized] 6 | a[n]=1; | ~~~~^~
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int n,m;cin>>m; int a[4]={0}; a[n]=1; for(int i=0;i<m;i++){ int t,u;cin>>t>>u; int y = a[t]; a[t]=a[u];a[u]=y; } for(int i=1;i<=3;i++) if(a[i])cout<<i<<endl; }