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