結果

問題 No.481 1から10
ユーザー edash
提出日時 2018-08-16 22:50:10
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 144 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-04 20:17:48
合計ジャッジ時間 842 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 2
other RE * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

num_l = list(map(int, input().split()))
num_l = num_l.append(0)
for i in num_l:
    if i != num_l.index(i) + 1:
        print(i-1)
        break
0