結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 428 ms
29,692 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 412 ms
29,848 KB
testcase_04 AC 451 ms
29,704 KB
testcase_05 AC 430 ms
29,700 KB
testcase_06 AC 416 ms
29,700 KB
testcase_07 AC 387 ms
29,696 KB
testcase_08 AC 520 ms
29,772 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 26 ms
10,880 KB
testcase_11 AC 26 ms
10,752 KB
testcase_12 AC 27 ms
10,880 KB
testcase_13 AC 27 ms
10,752 KB
testcase_14 AC 25 ms
10,752 KB
testcase_15 AC 25 ms
10,752 KB
testcase_16 AC 26 ms
10,880 KB
testcase_17 AC 26 ms
10,752 KB
testcase_18 AC 27 ms
10,752 KB
testcase_19 AC 136 ms
15,384 KB
testcase_20 AC 397 ms
29,696 KB
testcase_21 AC 248 ms
20,548 KB
testcase_22 AC 164 ms
20,560 KB
testcase_23 AC 134 ms
15,380 KB
testcase_24 AC 363 ms
29,756 KB
testcase_25 AC 52 ms
11,904 KB
testcase_26 AC 261 ms
20,676 KB
testcase_27 AC 130 ms
15,380 KB
testcase_28 AC 266 ms
20,928 KB
testcase_29 AC 222 ms
20,520 KB
testcase_30 AC 264 ms
20,544 KB
testcase_31 AC 33 ms
11,008 KB
testcase_32 AC 491 ms
29,680 KB
testcase_33 AC 97 ms
14,488 KB
testcase_34 AC 376 ms
29,692 KB
testcase_35 AC 462 ms
29,844 KB
testcase_36 AC 367 ms
29,708 KB
testcase_37 AC 366 ms
29,776 KB
testcase_38 AC 254 ms
20,544 KB
testcase_39 AC 26 ms
10,752 KB
testcase_40 AC 29 ms
10,752 KB
testcase_41 AC 31 ms
10,880 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