結果

問題 No.1185 完全な3の倍数
ユーザー 萩3萩3
提出日時 2021-05-03 12:55:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 588 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 54,020 KB
最終ジャッジ日時 2024-07-22 02:50:03
合計ジャッジ時間 2,932 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,140 KB
testcase_01 AC 36 ms
52,216 KB
testcase_02 AC 37 ms
53,296 KB
testcase_03 AC 36 ms
52,456 KB
testcase_04 AC 36 ms
53,236 KB
testcase_05 AC 35 ms
52,596 KB
testcase_06 AC 35 ms
53,268 KB
testcase_07 AC 36 ms
52,856 KB
testcase_08 AC 36 ms
53,736 KB
testcase_09 AC 36 ms
53,620 KB
testcase_10 AC 35 ms
52,788 KB
testcase_11 AC 35 ms
54,020 KB
testcase_12 AC 35 ms
53,336 KB
testcase_13 AC 35 ms
52,472 KB
testcase_14 AC 37 ms
52,696 KB
testcase_15 AC 35 ms
53,792 KB
testcase_16 AC 35 ms
52,572 KB
testcase_17 AC 33 ms
53,200 KB
testcase_18 AC 35 ms
52,856 KB
testcase_19 AC 37 ms
53,332 KB
testcase_20 AC 35 ms
52,856 KB
testcase_21 AC 35 ms
53,220 KB
testcase_22 AC 37 ms
52,200 KB
testcase_23 AC 40 ms
52,284 KB
testcase_24 AC 37 ms
52,588 KB
testcase_25 AC 36 ms
52,676 KB
testcase_26 AC 36 ms
52,772 KB
testcase_27 AC 36 ms
52,616 KB
testcase_28 AC 36 ms
53,684 KB
testcase_29 AC 36 ms
53,284 KB
testcase_30 AC 37 ms
53,056 KB
testcase_31 AC 34 ms
52,768 KB
testcase_32 AC 36 ms
52,596 KB
testcase_33 AC 36 ms
52,064 KB
testcase_34 AC 37 ms
53,352 KB
testcase_35 AC 38 ms
53,920 KB
testcase_36 AC 36 ms
53,840 KB
testcase_37 AC 35 ms
52,752 KB
testcase_38 AC 38 ms
53,460 KB
testcase_39 AC 36 ms
53,604 KB
testcase_40 AC 37 ms
53,208 KB
testcase_41 AC 37 ms
52,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import sys

def resolve():
    nstr = input()
    length = len(nstr)
    n = int(nstr)

    if length == 2:
        print(n//3-3)
        return

    result = 30
    
    if length - 3 > 0:
        result += 16*(4**(length-3)-1)

    head = int(nstr[0])
    result += (head-1)//3 * 4**(length-1)
    if head%3 != 0:
        print(result)
        return

    for i, c in zip(range(length-1,0,-1),nstr[1:]):
        if int(c) == 0: continue
        result += (int(c)+2)//3 * 4**(i-1)

        if int(c)%3 != 0: break

    else:
        result += 1

    print(result)

resolve()
0