結果

問題 No.1185 完全な3の倍数
ユーザー H20H20
提出日時 2020-11-18 13:05:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 506 ms / 2,000 ms
コード長 326 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 217,684 KB
最終ジャッジ日時 2024-07-23 09:00:49
合計ジャッジ時間 6,501 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
112,780 KB
testcase_01 AC 36 ms
52,244 KB
testcase_02 AC 37 ms
52,804 KB
testcase_03 AC 159 ms
112,780 KB
testcase_04 AC 163 ms
112,784 KB
testcase_05 AC 159 ms
112,804 KB
testcase_06 AC 157 ms
113,044 KB
testcase_07 AC 159 ms
112,932 KB
testcase_08 AC 506 ms
217,684 KB
testcase_09 AC 36 ms
53,424 KB
testcase_10 AC 36 ms
53,416 KB
testcase_11 AC 37 ms
52,700 KB
testcase_12 AC 35 ms
53,688 KB
testcase_13 AC 36 ms
52,952 KB
testcase_14 AC 35 ms
53,020 KB
testcase_15 AC 36 ms
52,872 KB
testcase_16 AC 36 ms
53,548 KB
testcase_17 AC 36 ms
53,052 KB
testcase_18 AC 36 ms
53,320 KB
testcase_19 AC 156 ms
113,092 KB
testcase_20 AC 156 ms
112,804 KB
testcase_21 AC 159 ms
112,908 KB
testcase_22 AC 157 ms
113,068 KB
testcase_23 AC 157 ms
112,804 KB
testcase_24 AC 155 ms
112,680 KB
testcase_25 AC 75 ms
86,568 KB
testcase_26 AC 160 ms
112,656 KB
testcase_27 AC 159 ms
112,916 KB
testcase_28 AC 156 ms
113,164 KB
testcase_29 AC 155 ms
113,056 KB
testcase_30 AC 157 ms
112,928 KB
testcase_31 AC 44 ms
63,412 KB
testcase_32 AC 159 ms
112,784 KB
testcase_33 AC 75 ms
86,300 KB
testcase_34 AC 156 ms
112,780 KB
testcase_35 AC 156 ms
112,804 KB
testcase_36 AC 161 ms
112,920 KB
testcase_37 AC 158 ms
112,928 KB
testcase_38 AC 157 ms
112,908 KB
testcase_39 AC 37 ms
53,132 KB
testcase_40 AC 37 ms
52,988 KB
testcase_41 AC 45 ms
62,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
N = int(input())
cnt = 0
T =  list(itertools.product(['0', '3', '6', '9'], repeat=len(str(N))))
for i in range(len(T)):
    num = int(''.join(T[i]))
    if num>10 and num<=N:
        cnt += 1

for i in range(10,min(100,N+1)):
    a,b = i//10 ,i%10
    if((a+b)%3==0 and a%3 != 0):
        cnt +=1

print(cnt)
0