結果
| 問題 | No.481 1から10 |
| コンテスト | |
| ユーザー |
iwbchi
|
| 提出日時 | 2020-08-18 20:56:08 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 20 ms / 2,000 ms |
| + 852µs | |
| コード長 | 139 bytes |
| 記録 | |
| コンパイル時間 | 54 ms |
| コンパイル使用メモリ | 14,976 KB |
| 実行使用メモリ | 11,008 KB |
| 最終ジャッジ日時 | 2026-09-14 10:41:16 |
| 合計ジャッジ時間 | 1,242 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 8 |
ソースコード
B = list(map(int, input().split()))
C = 1
for i in B:
if not i == C:
print(C)
break
C += 1
if C == 10:
print(C)
iwbchi