結果

問題 No.481 1から10
ユーザー mayoko_mayoko_
提出日時 2017-04-11 16:03:33
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 91 bytes
コンパイル時間 454 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 6,032 KB
最終ジャッジ日時 2023-09-25 11:11:10
合計ジャッジ時間 1,412 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
5,856 KB
testcase_01 AC 11 ms
6,008 KB
testcase_02 AC 11 ms
6,008 KB
testcase_03 AC 11 ms
5,932 KB
testcase_04 AC 11 ms
6,032 KB
testcase_05 AC 10 ms
5,916 KB
testcase_06 AC 11 ms
6,032 KB
testcase_07 AC 11 ms
5,856 KB
testcase_08 AC 10 ms
5,916 KB
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

B = map(int, raw_input().split())
for i in range(0,9):
	if i+1 != B[i]:
		print i+1
		break
0