結果

問題 No.1185 完全な3の倍数
ユーザー boutarouboutarou
提出日時 2020-08-24 07:41:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 75,888 KB
最終ジャッジ日時 2024-05-03 10:41:54
合計ジャッジ時間 3,990 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
72,064 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 AC 59 ms
71,680 KB
testcase_04 AC 59 ms
71,808 KB
testcase_05 AC 59 ms
72,064 KB
testcase_06 AC 60 ms
71,808 KB
testcase_07 AC 59 ms
72,064 KB
testcase_08 AC 169 ms
75,888 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 AC 38 ms
52,096 KB
testcase_11 AC 38 ms
51,456 KB
testcase_12 AC 38 ms
51,840 KB
testcase_13 AC 37 ms
52,224 KB
testcase_14 AC 39 ms
51,840 KB
testcase_15 AC 39 ms
52,096 KB
testcase_16 AC 38 ms
51,712 KB
testcase_17 AC 38 ms
51,840 KB
testcase_18 AC 39 ms
52,208 KB
testcase_19 AC 59 ms
72,064 KB
testcase_20 AC 60 ms
72,064 KB
testcase_21 AC 59 ms
72,064 KB
testcase_22 AC 61 ms
71,680 KB
testcase_23 AC 59 ms
71,680 KB
testcase_24 AC 60 ms
72,192 KB
testcase_25 AC 51 ms
62,592 KB
testcase_26 AC 59 ms
72,192 KB
testcase_27 AC 59 ms
72,192 KB
testcase_28 AC 59 ms
72,192 KB
testcase_29 AC 59 ms
71,936 KB
testcase_30 AC 59 ms
71,680 KB
testcase_31 AC 46 ms
59,776 KB
testcase_32 AC 61 ms
72,064 KB
testcase_33 AC 51 ms
62,592 KB
testcase_34 AC 59 ms
72,320 KB
testcase_35 AC 60 ms
72,320 KB
testcase_36 AC 59 ms
72,064 KB
testcase_37 AC 58 ms
72,576 KB
testcase_38 AC 58 ms
71,680 KB
testcase_39 AC 38 ms
52,224 KB
testcase_40 AC 37 ms
51,840 KB
testcase_41 AC 46 ms
60,032 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