結果

問題 No.1185 完全な3の倍数
ユーザー 萩3萩3
提出日時 2021-05-03 01:15:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 886 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 52,608 KB
最終ジャッジ日時 2024-07-21 10:29:57
合計ジャッジ時間 3,383 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 41 ms
52,096 KB
testcase_09 AC 40 ms
52,608 KB
testcase_10 AC 40 ms
51,456 KB
testcase_11 AC 40 ms
51,840 KB
testcase_12 AC 41 ms
52,224 KB
testcase_13 AC 40 ms
52,224 KB
testcase_14 AC 40 ms
51,712 KB
testcase_15 AC 42 ms
51,584 KB
testcase_16 AC 41 ms
51,840 KB
testcase_17 AC 39 ms
51,840 KB
testcase_18 AC 40 ms
52,224 KB
testcase_19 AC 41 ms
51,712 KB
testcase_20 AC 41 ms
52,096 KB
testcase_21 AC 40 ms
52,224 KB
testcase_22 WA -
testcase_23 AC 41 ms
51,840 KB
testcase_24 AC 40 ms
52,224 KB
testcase_25 AC 40 ms
51,712 KB
testcase_26 AC 40 ms
51,584 KB
testcase_27 AC 40 ms
51,456 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 41 ms
51,968 KB
testcase_31 AC 40 ms
52,224 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 40 ms
51,840 KB
testcase_35 WA -
testcase_36 AC 40 ms
51,584 KB
testcase_37 AC 40 ms
51,712 KB
testcase_38 AC 40 ms
52,096 KB
testcase_39 AC 40 ms
52,096 KB
testcase_40 AC 40 ms
51,712 KB
testcase_41 AC 40 ms
51,968 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])
    if head < 3:
        print(result)
        return
    elif head == 3:
        pass
    elif head < 6:
        result += 4**(length-1)
        print(result)
        return
    elif head == 6:
        result += 4**(length-1)
    elif head < 9:
        result += 2 * 4**(length-1)
        print(result)
        return
    else:
        result += 2 * 4**(length-1)

    tmp = 1
    for c in nstr[1:]:
        if int(c) < 3:
            continue
        elif int(c) < 6:
            tmp *= 2
        elif int(c) < 9:
            tmp *= 3
        else:
            tmp *= 4

    result += tmp
    print(result)

resolve()
0