結果

問題 No.26 シャッフルゲーム
ユーザー koba-e964koba-e964
提出日時 2015-05-24 00:46:17
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 217 bytes
コンパイル時間 1,284 ms
コンパイル使用メモリ 143,088 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-20 10:56:18
合計ジャッジ時間 1,771 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 1 ms
4,384 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:6:5: warning: ‘n’ is used uninitialized in this function [-Wuninitialized]
 a[n]=1;
 ~~~~^~

ソースコード

diff #

#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;
}
0