結果

問題 No.593 4進FizzBuzz
ユーザー yumechiyumechi
提出日時 2017-11-24 22:02:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,268 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 81,900 KB
実行使用メモリ 144,516 KB
最終ジャッジ日時 2024-11-27 07:11:56
合計ジャッジ時間 59,638 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
58,972 KB
testcase_01 AC 39 ms
142,880 KB
testcase_02 AC 43 ms
59,100 KB
testcase_03 AC 39 ms
142,200 KB
testcase_04 AC 40 ms
59,904 KB
testcase_05 AC 38 ms
143,308 KB
testcase_06 AC 39 ms
59,760 KB
testcase_07 AC 39 ms
144,516 KB
testcase_08 AC 39 ms
58,940 KB
testcase_09 AC 39 ms
142,108 KB
testcase_10 AC 39 ms
58,760 KB
testcase_11 AC 40 ms
143,840 KB
testcase_12 AC 39 ms
59,180 KB
testcase_13 AC 40 ms
142,356 KB
testcase_14 AC 39 ms
58,844 KB
testcase_15 AC 39 ms
59,944 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# please use positive value


def convert10toDecimal(
    num,  # expected Integer type
    decimal,  # expected Integer type
    characters="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ",  # expected upper case
    lowercharacter=False
):

    # decimal only can use 2 to 36
    if num < 0 and not 2 <= decimal <= len(characters):
        return None

    convertedValue = ""
    while num > 0:
        convertedValue = \
            characters[num % decimal] + convertedValue
        num //= decimal
    return convertedValue

# please use positive value


def convertDecimalto10(
    numstr,  # expected String type
    decimal,  # expected String type
    characters="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"  # expected upper case
):

    # decimal only can use 2 to 36
    if not 2 <= decimal <= len(characters):
        return None

    numstr = numstr.upper()  # use characters upper case
    powercnt = 1
    decimal10value = 0
    for chara in numstr[::-1]:
        decimal10value += powercnt * characters.index(chara)
        powercnt *= decimal

    return decimal10value


def run():
    n = input()
    r = convertDecimalto10(numstr=n, decimal=4)
    print(((r % 3 == 0 and "Fizz" or  "") + (r % 5 == 0 and "Buzz" or "")) or n)

if __name__ == "__main__":
    run()
0