結果
問題 |
No.481 1から10
|
ユーザー |
|
提出日時 | 2017-03-05 07:45:17 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 167 bytes |
コンパイル時間 | 96 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-23 02:25:33 |
合計ジャッジ時間 | 871 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 2 |
other | WA * 8 |
ソースコード
input_nums = [int(e) for e in input().split()] one_to_ten = [e for e in range(1, 11)] for i in input_nums: if i not in one_to_ten: print(i) break