結果

問題 No.593 4進FizzBuzz
ユーザー mnrmnr
提出日時 2020-03-05 21:55:21
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 233 bytes
コンパイル時間 2,008 ms
コンパイル使用メモリ 76,348 KB
実行使用メモリ 227,648 KB
最終ジャッジ日時 2024-10-14 02:09:32
合計ジャッジ時間 7,400 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
82,132 KB
testcase_01 AC 74 ms
75,028 KB
testcase_02 AC 74 ms
75,400 KB
testcase_03 AC 74 ms
75,432 KB
testcase_04 AC 76 ms
75,004 KB
testcase_05 AC 74 ms
75,164 KB
testcase_06 AC 74 ms
75,184 KB
testcase_07 AC 75 ms
75,260 KB
testcase_08 AC 74 ms
75,300 KB
testcase_09 AC 76 ms
75,276 KB
testcase_10 AC 75 ms
75,284 KB
testcase_11 AC 75 ms
75,020 KB
testcase_12 AC 75 ms
75,148 KB
testcase_13 AC 75 ms
75,272 KB
testcase_14 AC 74 ms
75,284 KB
testcase_15 AC 75 ms
75,168 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def fzbz(n):
    if n % 3 == 0 and n % 5 == 0:
        print("FizzBuzz")
    elif n % 3 == 0:
        print("Fizz")
    elif n % 5 == 0:
        print("Buzz")
    else:
        print(N)

N = int(input())
n10 = int(str(N),4)
fzbz(n10)
0