結果

問題 No.481 1から10
ユーザー tarotaro789tarotaro789
提出日時 2017-02-18 09:25:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 210 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 10,664 KB
実行使用メモリ 7,892 KB
最終ジャッジ日時 2023-08-28 18:44:12
合計ジャッジ時間 1,305 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
7,704 KB
testcase_01 AC 14 ms
7,792 KB
testcase_02 AC 14 ms
7,836 KB
testcase_03 AC 15 ms
7,868 KB
testcase_04 AC 15 ms
7,776 KB
testcase_05 AC 15 ms
7,892 KB
testcase_06 AC 14 ms
7,868 KB
testcase_07 AC 14 ms
7,776 KB
testcase_08 WA -
testcase_09 AC 15 ms
7,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ten=["1","2","3","4","5","6","7","8","9","10"]
lsten=[]
lsten=input().split()
for i in range(len(lsten)):
    if ten[i]!=lsten[i]:
        break
if ten[i]=="9":
    print("10")
else:
    print(ten[i])
        
0