結果

問題 No.207 世界のなんとか
ユーザー momiji53momiji53
提出日時 2016-11-16 00:26:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 175 ms / 5,000 ms
コード長 224 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 28,372 KB
最終ジャッジ日時 2024-06-09 14:01:00
合計ジャッジ時間 5,774 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 163 ms
28,248 KB
testcase_01 AC 164 ms
28,244 KB
testcase_02 AC 164 ms
28,244 KB
testcase_03 AC 164 ms
28,372 KB
testcase_04 AC 163 ms
28,240 KB
testcase_05 AC 164 ms
28,240 KB
testcase_06 AC 170 ms
28,244 KB
testcase_07 AC 168 ms
28,372 KB
testcase_08 AC 165 ms
28,244 KB
testcase_09 AC 162 ms
28,244 KB
testcase_10 AC 167 ms
28,248 KB
testcase_11 AC 165 ms
28,240 KB
testcase_12 AC 165 ms
28,240 KB
testcase_13 AC 165 ms
28,248 KB
testcase_14 AC 166 ms
28,240 KB
testcase_15 AC 172 ms
28,244 KB
testcase_16 AC 175 ms
28,368 KB
testcase_17 AC 170 ms
28,372 KB
testcase_18 AC 165 ms
28,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from pip._vendor.requests.packages.urllib3.connectionpool import xrange
first = input()

s = first.split()

a = int(s[0])
b = int(s[1])

for i in xrange(a,b+1):
    if i % 3 == 0 or str(i).find("3") != -1:
        print(i)

0