結果
| 問題 | No.481 1から10 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-10-14 20:08:00 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 148 bytes |
| 記録 | |
| コンパイル時間 | 349 ms |
| コンパイル使用メモリ | 20,832 KB |
| 実行使用メモリ | 20,568 KB |
| 最終ジャッジ日時 | 2026-05-12 10:15:57 |
| 合計ジャッジ時間 | 2,465 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 5 RE * 3 |
ソースコード
import sys
line = [int(i) for i in input().split()]
for i in line:
if line[i+1] != line[i] + 1:
print(line[i] + 1)
sys.exit()