結果

問題 No.593 4進FizzBuzz
ユーザー titiatitia
提出日時 2024-05-25 10:42:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,124 ms / 2,000 ms
コード長 234 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 83,292 KB
最終ジャッジ日時 2024-05-25 10:42:43
合計ジャッジ時間 24,252 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,600 KB
testcase_01 AC 36 ms
52,444 KB
testcase_02 AC 37 ms
52,476 KB
testcase_03 AC 36 ms
52,824 KB
testcase_04 AC 72 ms
52,616 KB
testcase_05 AC 37 ms
53,236 KB
testcase_06 AC 37 ms
52,148 KB
testcase_07 AC 36 ms
53,236 KB
testcase_08 AC 37 ms
52,028 KB
testcase_09 AC 37 ms
52,808 KB
testcase_10 AC 37 ms
52,496 KB
testcase_11 AC 36 ms
53,564 KB
testcase_12 AC 37 ms
52,660 KB
testcase_13 AC 37 ms
52,560 KB
testcase_14 AC 37 ms
52,520 KB
testcase_15 AC 37 ms
52,536 KB
testcase_16 AC 1,097 ms
82,920 KB
testcase_17 AC 1,099 ms
82,756 KB
testcase_18 AC 1,099 ms
83,188 KB
testcase_19 AC 1,117 ms
83,044 KB
testcase_20 AC 1,094 ms
82,644 KB
testcase_21 AC 1,071 ms
82,644 KB
testcase_22 AC 1,117 ms
83,008 KB
testcase_23 AC 1,097 ms
83,292 KB
testcase_24 AC 1,100 ms
82,816 KB
testcase_25 AC 1,097 ms
82,636 KB
testcase_26 AC 1,124 ms
82,772 KB
testcase_27 AC 1,118 ms
83,036 KB
testcase_28 AC 1,099 ms
82,748 KB
testcase_29 AC 1,120 ms
82,920 KB
testcase_30 AC 1,097 ms
83,260 KB
testcase_31 AC 1,080 ms
82,616 KB
testcase_32 AC 1,072 ms
82,944 KB
testcase_33 AC 1,117 ms
82,784 KB
testcase_34 AC 1,099 ms
82,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=input()
score=0

N=N[::-1]
for i in range(len(N)):
    score+=pow(4,i,15)*int(N[i])

if score%3==0 and score%5==0:
    print("FizzBuzz")
elif score%3==0:
    print("Fizz")
elif score%5==0:
    print("Buzz")
else:
    print(N[::-1])
0