結果

問題 No.1185 完全な3の倍数
ユーザー O2MTO2MT
提出日時 2020-08-22 19:34:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 546 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 54,272 KB
最終ジャッジ日時 2024-11-24 09:34:00
合計ジャッジ時間 11,413 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 486 ms
47,616 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 453 ms
45,184 KB
testcase_04 AC 519 ms
51,200 KB
testcase_05 AC 518 ms
48,256 KB
testcase_06 AC 468 ms
45,824 KB
testcase_07 AC 453 ms
45,184 KB
testcase_08 AC 546 ms
54,272 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 30 ms
10,880 KB
testcase_12 AC 29 ms
10,624 KB
testcase_13 AC 29 ms
10,624 KB
testcase_14 AC 30 ms
10,496 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 30 ms
10,624 KB
testcase_17 AC 30 ms
10,880 KB
testcase_18 AC 30 ms
10,624 KB
testcase_19 AC 157 ms
18,304 KB
testcase_20 AC 419 ms
42,240 KB
testcase_21 AC 290 ms
30,336 KB
testcase_22 AC 188 ms
21,248 KB
testcase_23 AC 153 ms
18,304 KB
testcase_24 AC 421 ms
42,112 KB
testcase_25 AC 62 ms
12,288 KB
testcase_26 AC 294 ms
30,464 KB
testcase_27 AC 158 ms
18,304 KB
testcase_28 AC 311 ms
31,872 KB
testcase_29 AC 260 ms
27,392 KB
testcase_30 AC 288 ms
30,336 KB
testcase_31 AC 36 ms
10,880 KB
testcase_32 AC 483 ms
48,256 KB
testcase_33 AC 115 ms
15,872 KB
testcase_34 AC 423 ms
42,496 KB
testcase_35 AC 524 ms
51,328 KB
testcase_36 AC 438 ms
42,240 KB
testcase_37 AC 432 ms
42,368 KB
testcase_38 AC 299 ms
30,208 KB
testcase_39 AC 29 ms
10,752 KB
testcase_40 AC 30 ms
10,624 KB
testcase_41 AC 31 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N = int(input())

l = [12, 15, 18, 21, 24, 27, 42, 45, 48, 51, 54, 57, 72, 75, 78, 81, 84, 87]
ans = -3
q = deque([3,6,9])
while len(q) > 0:
    num = q.popleft()
    if num <= N:
      ans += 1
      for y in [0, 3, 6, 9]:
          q.append(num*10 + y)

for i in l:
    if i <= N:
        ans += 1
print(ans)
0