結果
| 問題 |
No.481 1から10
|
| コンテスト | |
| ユーザー |
slim
|
| 提出日時 | 2017-11-14 22:04:58 |
| 言語 | Python2 (2.7.18) |
| 結果 |
AC
|
| 実行時間 | 11 ms / 2,000 ms |
| コード長 | 163 bytes |
| コンパイル時間 | 143 ms |
| コンパイル使用メモリ | 6,784 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-25 02:16:50 |
| 合計ジャッジ時間 | 1,079 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 8 |
ソースコード
s = raw_input().split()
c = 1
for i in range(0,9):
test =int(s[i])
if test != c:
print c
break
c += 1
if c == 10:
print c
slim