結果

問題 No.1185 完全な3の倍数
ユーザー boutarouboutarou
提出日時 2020-08-24 07:41:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 75,712 KB
最終ジャッジ日時 2024-11-24 09:48:42
合計ジャッジ時間 3,250 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
72,876 KB
testcase_01 AC 35 ms
53,716 KB
testcase_02 AC 33 ms
53,144 KB
testcase_03 AC 53 ms
73,416 KB
testcase_04 AC 52 ms
73,132 KB
testcase_05 AC 53 ms
72,484 KB
testcase_06 AC 53 ms
73,668 KB
testcase_07 AC 53 ms
72,952 KB
testcase_08 AC 149 ms
75,712 KB
testcase_09 AC 34 ms
51,996 KB
testcase_10 AC 35 ms
52,204 KB
testcase_11 AC 34 ms
52,816 KB
testcase_12 AC 33 ms
52,616 KB
testcase_13 AC 35 ms
53,560 KB
testcase_14 AC 33 ms
52,828 KB
testcase_15 AC 34 ms
53,572 KB
testcase_16 AC 34 ms
52,572 KB
testcase_17 AC 33 ms
52,444 KB
testcase_18 AC 33 ms
52,836 KB
testcase_19 AC 54 ms
72,740 KB
testcase_20 AC 52 ms
72,184 KB
testcase_21 AC 54 ms
72,688 KB
testcase_22 AC 53 ms
72,484 KB
testcase_23 AC 52 ms
72,700 KB
testcase_24 AC 52 ms
72,068 KB
testcase_25 AC 44 ms
62,900 KB
testcase_26 AC 52 ms
73,980 KB
testcase_27 AC 52 ms
73,512 KB
testcase_28 AC 52 ms
72,828 KB
testcase_29 AC 55 ms
73,112 KB
testcase_30 AC 53 ms
71,944 KB
testcase_31 AC 39 ms
60,216 KB
testcase_32 AC 53 ms
73,284 KB
testcase_33 AC 46 ms
63,036 KB
testcase_34 AC 53 ms
72,272 KB
testcase_35 AC 53 ms
72,004 KB
testcase_36 AC 54 ms
73,096 KB
testcase_37 AC 54 ms
73,480 KB
testcase_38 AC 53 ms
72,548 KB
testcase_39 AC 34 ms
52,404 KB
testcase_40 AC 34 ms
52,636 KB
testcase_41 AC 39 ms
60,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()

n = int(s)
num = len(s)

ans = 0

for i in range(4 ** num):
    now = i
    cnt = 0
    for j in range(num):
        cnt *= 10
        cnt += (now % 4) * 3
        now //= 4
    if (cnt <= n):
        ans += 1

for i in range(10, min(100, n + 1)):
    a = i % 10
    b = i // 10
    if ((a % 3 == 1 and b % 3 == 2) or (a % 3 == 2 and b % 3 == 1)):
        ans += 1

print(ans - 4)
0