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