結果

問題 No.1185 完全な3の倍数
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2020-08-22 13:26:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 625 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 81,164 KB
最終ジャッジ日時 2024-05-03 10:13:14
合計ジャッジ時間 3,536 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
80,424 KB
testcase_01 AC 55 ms
78,660 KB
testcase_02 AC 53 ms
78,768 KB
testcase_03 AC 55 ms
80,232 KB
testcase_04 AC 54 ms
79,624 KB
testcase_05 AC 54 ms
80,076 KB
testcase_06 AC 56 ms
80,372 KB
testcase_07 AC 54 ms
80,968 KB
testcase_08 AC 52 ms
78,380 KB
testcase_09 AC 53 ms
78,760 KB
testcase_10 AC 54 ms
78,864 KB
testcase_11 AC 55 ms
78,432 KB
testcase_12 AC 54 ms
79,180 KB
testcase_13 AC 54 ms
78,700 KB
testcase_14 AC 53 ms
78,952 KB
testcase_15 AC 53 ms
78,816 KB
testcase_16 AC 53 ms
78,860 KB
testcase_17 AC 54 ms
79,580 KB
testcase_18 AC 54 ms
78,324 KB
testcase_19 AC 56 ms
79,132 KB
testcase_20 AC 54 ms
79,912 KB
testcase_21 AC 57 ms
80,692 KB
testcase_22 AC 57 ms
80,776 KB
testcase_23 AC 57 ms
79,452 KB
testcase_24 AC 56 ms
79,352 KB
testcase_25 AC 56 ms
80,172 KB
testcase_26 AC 57 ms
79,504 KB
testcase_27 AC 57 ms
79,080 KB
testcase_28 AC 56 ms
79,696 KB
testcase_29 AC 57 ms
80,172 KB
testcase_30 AC 57 ms
81,164 KB
testcase_31 AC 57 ms
78,960 KB
testcase_32 AC 55 ms
79,492 KB
testcase_33 AC 56 ms
80,636 KB
testcase_34 AC 56 ms
79,372 KB
testcase_35 AC 57 ms
78,836 KB
testcase_36 AC 56 ms
79,436 KB
testcase_37 AC 56 ms
79,104 KB
testcase_38 AC 55 ms
79,768 KB
testcase_39 AC 54 ms
78,768 KB
testcase_40 AC 55 ms
78,724 KB
testcase_41 AC 56 ms
78,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

0,3,6,9しか使えない

"""

N = int(input())

lis = [ [0,3,6,9] ]
for i in range(8):
    new = []
    for j in lis[i]:

        if j != 0:
            new.append(j * 10 + 0)
            new.append(j * 10 + 3)
            new.append(j * 10 + 6)
            new.append(j * 10 + 9)
    lis.append(new)

#print (max(lis[-1]))

new = []
for i in range(1,10):
    for j in range(10):
        if (i+j) % 3 == 0:
            new.append(i*10+j)
lis.append(new)



ans = 0
#print (lis[2])
for i in range(len(lis)):
    if i <= 1:
        continue
    for j in lis[i]:
        if 10 < j <= N:
            ans += 1
print (ans)
0