結果

問題 No.1185 完全な3の倍数
ユーザー rlangevinrlangevin
提出日時 2023-01-15 17:37:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 262 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-06-09 05:39:06
合計ジャッジ時間 12,319 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 251 ms
75,648 KB
testcase_01 AC 256 ms
75,520 KB
testcase_02 AC 249 ms
75,520 KB
testcase_03 AC 248 ms
75,392 KB
testcase_04 AC 260 ms
75,704 KB
testcase_05 AC 250 ms
75,648 KB
testcase_06 AC 248 ms
75,648 KB
testcase_07 AC 249 ms
75,776 KB
testcase_08 AC 256 ms
75,648 KB
testcase_09 AC 253 ms
75,904 KB
testcase_10 AC 243 ms
75,648 KB
testcase_11 AC 252 ms
75,648 KB
testcase_12 AC 262 ms
75,648 KB
testcase_13 AC 246 ms
75,896 KB
testcase_14 AC 247 ms
75,648 KB
testcase_15 AC 255 ms
75,648 KB
testcase_16 AC 244 ms
75,648 KB
testcase_17 AC 242 ms
75,648 KB
testcase_18 AC 245 ms
75,648 KB
testcase_19 AC 250 ms
75,392 KB
testcase_20 AC 254 ms
75,776 KB
testcase_21 AC 258 ms
75,844 KB
testcase_22 AC 250 ms
75,392 KB
testcase_23 AC 249 ms
75,520 KB
testcase_24 AC 250 ms
75,640 KB
testcase_25 AC 248 ms
75,776 KB
testcase_26 AC 249 ms
75,648 KB
testcase_27 AC 248 ms
75,528 KB
testcase_28 AC 245 ms
75,776 KB
testcase_29 AC 251 ms
75,980 KB
testcase_30 AC 253 ms
75,648 KB
testcase_31 AC 250 ms
75,520 KB
testcase_32 AC 258 ms
76,032 KB
testcase_33 AC 246 ms
75,520 KB
testcase_34 AC 247 ms
75,964 KB
testcase_35 AC 246 ms
75,588 KB
testcase_36 AC 250 ms
75,392 KB
testcase_37 AC 248 ms
76,032 KB
testcase_38 AC 248 ms
75,520 KB
testcase_39 AC 242 ms
75,648 KB
testcase_40 AC 248 ms
75,652 KB
testcase_41 AC 245 ms
75,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import *

N = int(input())
ans = 0
for i in range(10, min(100, N + 1)):
    s = str(i)
    a, b = int(s[0]), int(s[1])
    if (a + b) % 3 == 0:
        ans += 1
        
for tup in product(["3", "6", "9", "0"], repeat=10):
    n = int("".join(tup))
    if 100 < n <= N:
        ans += 1
print(ans)
0