結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 438 ms
47,744 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 401 ms
45,440 KB
testcase_04 AC 487 ms
51,328 KB
testcase_05 AC 467 ms
48,384 KB
testcase_06 AC 439 ms
46,080 KB
testcase_07 AC 418 ms
45,312 KB
testcase_08 AC 510 ms
54,272 KB
testcase_09 AC 26 ms
10,880 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 26 ms
10,880 KB
testcase_12 AC 28 ms
11,008 KB
testcase_13 AC 26 ms
10,880 KB
testcase_14 AC 26 ms
10,752 KB
testcase_15 AC 27 ms
10,752 KB
testcase_16 AC 26 ms
10,752 KB
testcase_17 AC 26 ms
10,880 KB
testcase_18 AC 27 ms
10,880 KB
testcase_19 AC 143 ms
18,432 KB
testcase_20 AC 409 ms
42,368 KB
testcase_21 AC 273 ms
30,464 KB
testcase_22 AC 175 ms
21,504 KB
testcase_23 AC 148 ms
18,432 KB
testcase_24 AC 383 ms
42,368 KB
testcase_25 AC 56 ms
12,672 KB
testcase_26 AC 260 ms
30,464 KB
testcase_27 AC 154 ms
18,560 KB
testcase_28 AC 294 ms
32,128 KB
testcase_29 AC 232 ms
27,520 KB
testcase_30 AC 269 ms
30,464 KB
testcase_31 AC 32 ms
11,136 KB
testcase_32 AC 468 ms
48,512 KB
testcase_33 AC 111 ms
16,000 KB
testcase_34 AC 393 ms
42,368 KB
testcase_35 AC 492 ms
51,328 KB
testcase_36 AC 380 ms
42,496 KB
testcase_37 AC 390 ms
42,368 KB
testcase_38 AC 264 ms
30,464 KB
testcase_39 AC 27 ms
10,752 KB
testcase_40 AC 27 ms
10,752 KB
testcase_41 AC 28 ms
10,880 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