結果

問題 No.481 1から10
コンテスト
ユーザー bellangeldindon
提出日時 2019-05-09 11:35:04
言語 PyPy2
(7.3.15)
結果
RE  
実行時間 -
コード長 202 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 145 ms
コンパイル使用メモリ 77,368 KB
最終ジャッジ日時 2025-12-04 01:40:09
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 2
other RE * 8
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

intlist = [True, True, True, True, True, True, True, True, True, True]
B = map(int, raw_input())
for i in range(0, 9):
	intlist[B[i]-1] = False
for i in range(0, 10):
	if intlist[i]:
		print i+1
		break
0