結果
問題 | No.481 1から10 |
ユーザー |
|
提出日時 | 2019-02-11 22:51:50 |
言語 | Python3 (3.7.1 + numpy 1.14.5 + scipy 1.1.0) |
結果 |
AC
|
実行時間 | 21 ms |
コード長 | 126 Byte |
コンパイル時間 | 53 ms |
使用メモリ | 8,916 KB |
最終ジャッジ日時 | 2019-02-11 22:51:51 |
テストケース
テストケース表示入力 | 結果 | 実行時間 使用メモリ |
---|---|---|
sample1.txt | AC | 20 ms
6,872 KB |
sample2.txt | AC | 21 ms
8,916 KB |
test1.txt | AC | 21 ms
6,868 KB |
test2.txt | AC | 20 ms
6,872 KB |
test3.txt | AC | 20 ms
6,868 KB |
test4.txt | AC | 20 ms
6,872 KB |
test5.txt | AC | 20 ms
6,868 KB |
test6.txt | AC | 20 ms
6,868 KB |
test7.txt | AC | 21 ms
6,872 KB |
test8.txt | AC | 21 ms
6,872 KB |
ソースコード
N = list(map(int, input().split())) if 10 not in N: print("10") for i in range(1,10): if i not in N: print(i)