結果
問題 | No.207 世界のなんとか |
ユーザー | t2-dm |
提出日時 | 2018-02-23 12:02:43 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 340 bytes |
コンパイル時間 | 112 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-10-07 14:56:06 |
合計ジャッジ時間 | 1,313 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 25 ms
10,880 KB |
testcase_07 | AC | 25 ms
10,752 KB |
testcase_08 | AC | 26 ms
10,752 KB |
testcase_09 | AC | 26 ms
10,752 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 30 ms
10,752 KB |
testcase_17 | AC | 27 ms
10,624 KB |
testcase_18 | AC | 26 ms
10,752 KB |
ソースコード
list = [3, 6, 9, 12, 13, 15, 18, 21, 23, 24, 27, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 42, 43, 45, 48, 51, 53, 54, 57, 60, 63, 66, 69, 72, 73, 75, 78, 81, 83, 84, 87, 90, 93, 96, 99] first = input() split_first = first.split() A = int(split_first[0]) B = int(split_first[1]) for n in list: if A <= n & n <= B: print(n)