結果

問題 No.1185 完全な3の倍数
ユーザー brthyyjpbrthyyjp
提出日時 2021-10-05 09:28:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 525 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 240,136 KB
最終ジャッジ日時 2024-07-23 02:32:36
合計ジャッジ時間 23,380 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 504 ms
239,364 KB
testcase_01 AC 513 ms
239,760 KB
testcase_02 AC 511 ms
239,544 KB
testcase_03 AC 508 ms
239,448 KB
testcase_04 AC 497 ms
239,836 KB
testcase_05 AC 495 ms
239,448 KB
testcase_06 AC 495 ms
239,516 KB
testcase_07 AC 498 ms
239,936 KB
testcase_08 AC 498 ms
239,520 KB
testcase_09 AC 498 ms
240,136 KB
testcase_10 AC 499 ms
239,360 KB
testcase_11 AC 495 ms
239,568 KB
testcase_12 AC 496 ms
239,540 KB
testcase_13 AC 501 ms
239,928 KB
testcase_14 AC 500 ms
239,636 KB
testcase_15 AC 504 ms
239,872 KB
testcase_16 AC 505 ms
239,792 KB
testcase_17 AC 506 ms
239,816 KB
testcase_18 AC 500 ms
240,056 KB
testcase_19 AC 499 ms
239,840 KB
testcase_20 AC 500 ms
239,776 KB
testcase_21 AC 505 ms
239,620 KB
testcase_22 AC 504 ms
239,632 KB
testcase_23 AC 507 ms
239,716 KB
testcase_24 AC 510 ms
239,744 KB
testcase_25 AC 518 ms
239,660 KB
testcase_26 AC 525 ms
239,872 KB
testcase_27 AC 512 ms
239,544 KB
testcase_28 AC 508 ms
239,460 KB
testcase_29 AC 505 ms
239,792 KB
testcase_30 AC 506 ms
239,640 KB
testcase_31 AC 511 ms
239,756 KB
testcase_32 AC 514 ms
239,556 KB
testcase_33 AC 513 ms
239,676 KB
testcase_34 AC 507 ms
239,644 KB
testcase_35 AC 513 ms
239,564 KB
testcase_36 AC 510 ms
239,732 KB
testcase_37 AC 509 ms
239,552 KB
testcase_38 AC 506 ms
239,424 KB
testcase_39 AC 504 ms
239,516 KB
testcase_40 AC 498 ms
239,772 KB
testcase_41 AC 487 ms
239,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
X1 = [1, 4, 7]
X2 = [2, 5, 8]
X0 = [0, 3, 6, 9]
X = set()
for a in X1:
    for b in X2:
        X.add(10*a+b)
        X.add(10*b+a)
import itertools
X0 = [str(c) for c in X0]
for p in itertools.product(X0, repeat=10):
    x = ''.join(p)
    x = int(x)
    if 0 <= x <= 9:
        continue
    X.add(x)
X = list(X)
X.sort()
import bisect
ans = bisect.bisect_right(X, n)
print(ans)
0