結果

問題 No.1185 完全な3の倍数
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2020-08-22 13:26:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 625 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 81,820 KB
実行使用メモリ 79,360 KB
最終ジャッジ日時 2024-11-24 09:19:09
合計ジャッジ時間 3,756 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
78,592 KB
testcase_01 AC 60 ms
78,464 KB
testcase_02 AC 60 ms
77,952 KB
testcase_03 AC 59 ms
78,720 KB
testcase_04 AC 58 ms
78,592 KB
testcase_05 AC 62 ms
78,592 KB
testcase_06 AC 64 ms
78,592 KB
testcase_07 AC 60 ms
78,976 KB
testcase_08 AC 57 ms
77,952 KB
testcase_09 AC 57 ms
78,336 KB
testcase_10 AC 57 ms
77,952 KB
testcase_11 AC 57 ms
78,464 KB
testcase_12 AC 56 ms
77,824 KB
testcase_13 AC 56 ms
77,696 KB
testcase_14 AC 57 ms
77,568 KB
testcase_15 AC 56 ms
77,920 KB
testcase_16 AC 56 ms
78,080 KB
testcase_17 AC 61 ms
77,696 KB
testcase_18 AC 57 ms
78,336 KB
testcase_19 AC 59 ms
79,360 KB
testcase_20 AC 59 ms
78,336 KB
testcase_21 AC 59 ms
78,592 KB
testcase_22 AC 59 ms
78,720 KB
testcase_23 AC 59 ms
78,720 KB
testcase_24 AC 58 ms
79,104 KB
testcase_25 AC 59 ms
79,192 KB
testcase_26 AC 59 ms
78,592 KB
testcase_27 AC 60 ms
78,464 KB
testcase_28 AC 60 ms
78,464 KB
testcase_29 AC 60 ms
78,592 KB
testcase_30 AC 62 ms
79,104 KB
testcase_31 AC 61 ms
78,976 KB
testcase_32 AC 59 ms
78,336 KB
testcase_33 AC 58 ms
79,104 KB
testcase_34 AC 58 ms
78,976 KB
testcase_35 AC 59 ms
78,592 KB
testcase_36 AC 59 ms
78,976 KB
testcase_37 AC 59 ms
78,336 KB
testcase_38 AC 59 ms
79,104 KB
testcase_39 AC 56 ms
78,336 KB
testcase_40 AC 58 ms
78,080 KB
testcase_41 AC 57 ms
78,336 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