結果

問題 No.1185 完全な3の倍数
ユーザー hir355hir355
提出日時 2020-08-22 13:36:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 468 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 1,329 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,740 KB
最終ジャッジ日時 2024-11-24 09:21:21
合計ジャッジ時間 11,276 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 403 ms
29,572 KB
testcase_01 AC 27 ms
10,496 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 407 ms
29,508 KB
testcase_04 AC 468 ms
29,668 KB
testcase_05 AC 409 ms
29,568 KB
testcase_06 AC 401 ms
29,732 KB
testcase_07 AC 401 ms
29,508 KB
testcase_08 AC 466 ms
29,648 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 26 ms
10,624 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 28 ms
10,752 KB
testcase_13 AC 27 ms
10,624 KB
testcase_14 AC 27 ms
10,624 KB
testcase_15 AC 27 ms
10,624 KB
testcase_16 AC 26 ms
10,624 KB
testcase_17 AC 27 ms
10,624 KB
testcase_18 AC 26 ms
10,880 KB
testcase_19 AC 125 ms
15,256 KB
testcase_20 AC 384 ms
29,636 KB
testcase_21 AC 243 ms
20,420 KB
testcase_22 AC 163 ms
20,400 KB
testcase_23 AC 127 ms
15,124 KB
testcase_24 AC 386 ms
29,636 KB
testcase_25 AC 52 ms
11,776 KB
testcase_26 AC 243 ms
20,292 KB
testcase_27 AC 131 ms
15,128 KB
testcase_28 AC 289 ms
20,548 KB
testcase_29 AC 214 ms
20,348 KB
testcase_30 AC 248 ms
20,420 KB
testcase_31 AC 31 ms
10,880 KB
testcase_32 AC 408 ms
29,720 KB
testcase_33 AC 102 ms
14,488 KB
testcase_34 AC 368 ms
29,636 KB
testcase_35 AC 459 ms
29,636 KB
testcase_36 AC 357 ms
29,668 KB
testcase_37 AC 369 ms
29,740 KB
testcase_38 AC 237 ms
20,292 KB
testcase_39 AC 27 ms
10,624 KB
testcase_40 AC 27 ms
10,752 KB
testcase_41 AC 27 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l = [15, 24, 42, 51, 18, 27, 45, 54, 72, 81, 12, 21, 84, 75, 57, 48, 87, 78]
n = int(input())
s = [0]
st = set()
while s:
    p = s.pop()
    if p in st or p > n:
        continue
    l.append(p)
    st.add(p)
    s.append(p * 10)
    s.append(p * 10 + 3)
    s.append(p * 10 + 6)
    s.append(p * 10 + 9)
ans = 0
for x in l:
    if 10 <= x <= n:
        ans += 1
print(ans)
0