結果

問題 No.593 4進FizzBuzz
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-12-30 19:35:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 184 bytes
コンパイル時間 650 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 83,200 KB
最終ジャッジ日時 2024-12-30 19:35:32
合計ジャッジ時間 7,131 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 49 ms
51,712 KB
testcase_04 AC 43 ms
51,328 KB
testcase_05 AC 44 ms
51,840 KB
testcase_06 AC 46 ms
51,712 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 42 ms
51,328 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 156 ms
82,688 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 154 ms
83,072 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 161 ms
82,560 KB
testcase_27 AC 185 ms
82,944 KB
testcase_28 WA -
testcase_29 AC 157 ms
82,816 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 149 ms
82,688 KB
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=input()
b3=1
c3=0
b5=1
c5=0
for d in n[::-1]:
	c3+=int(d)*b3%3
	c3%=3
	b3*=4
	b3%=3
	c5+=int(d)*b5%5
	c5%=5
	b5*=4
	b5%=5
print([n,"Fizz"*(b3==0)+"Buzz"*(b5==0)][(b3==0) or (b5==0)])
0