結果

問題 No.1849 Three Times Value
ユーザー AEnAEn
提出日時 2022-05-11 23:55:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 335 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-07-19 09:55:57
合計ジャッジ時間 2,575 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 35 ms
51,584 KB
testcase_02 AC 43 ms
60,416 KB
testcase_03 AC 35 ms
51,840 KB
testcase_04 AC 34 ms
51,584 KB
testcase_05 AC 35 ms
52,096 KB
testcase_06 AC 72 ms
76,160 KB
testcase_07 AC 35 ms
51,968 KB
testcase_08 AC 35 ms
51,712 KB
testcase_09 AC 68 ms
75,776 KB
testcase_10 AC 70 ms
76,032 KB
testcase_11 AC 66 ms
75,648 KB
testcase_12 AC 66 ms
75,520 KB
testcase_13 AC 47 ms
67,968 KB
testcase_14 AC 48 ms
68,224 KB
testcase_15 AC 48 ms
67,712 KB
testcase_16 AC 72 ms
75,904 KB
testcase_17 AC 46 ms
67,072 KB
testcase_18 AC 35 ms
51,456 KB
testcase_19 AC 35 ms
51,840 KB
testcase_20 AC 34 ms
51,968 KB
testcase_21 AC 36 ms
51,968 KB
testcase_22 AC 35 ms
51,968 KB
testcase_23 AC 34 ms
51,968 KB
testcase_24 AC 42 ms
60,032 KB
testcase_25 AC 35 ms
51,456 KB
testcase_26 AC 48 ms
67,712 KB
testcase_27 AC 47 ms
67,200 KB
testcase_28 AC 35 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product

N = int(input())
cnt = 0
num = [str(i) for i in range(10)]
for i in range(3, 16, 3):
    if len(str(N)) < i:
        break
    for v in product(num, repeat = i//3):
        if v[0] == '0':
            continue
        s = ''.join(v)
        s = 3 * s
        if int(s)<=N:
            cnt += 1
print(cnt)
0