結果

問題 No.593 4進FizzBuzz
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-12-30 19:37:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 180 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 83,200 KB
最終ジャッジ日時 2024-12-30 19:37:10
合計ジャッジ時間 6,591 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,968 KB
testcase_01 AC 45 ms
51,840 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 41 ms
51,584 KB
testcase_04 AC 43 ms
52,224 KB
testcase_05 AC 41 ms
51,584 KB
testcase_06 AC 42 ms
51,840 KB
testcase_07 AC 44 ms
51,456 KB
testcase_08 AC 47 ms
51,968 KB
testcase_09 AC 50 ms
51,584 KB
testcase_10 AC 44 ms
51,840 KB
testcase_11 AC 45 ms
51,840 KB
testcase_12 AC 46 ms
51,712 KB
testcase_13 AC 44 ms
51,584 KB
testcase_14 AC 45 ms
51,712 KB
testcase_15 AC 47 ms
51,712 KB
testcase_16 AC 145 ms
82,816 KB
testcase_17 AC 144 ms
82,944 KB
testcase_18 AC 155 ms
82,816 KB
testcase_19 AC 158 ms
82,816 KB
testcase_20 AC 185 ms
82,944 KB
testcase_21 AC 153 ms
82,688 KB
testcase_22 AC 154 ms
82,816 KB
testcase_23 AC 152 ms
82,688 KB
testcase_24 AC 150 ms
82,816 KB
testcase_25 AC 155 ms
82,688 KB
testcase_26 AC 158 ms
82,944 KB
testcase_27 AC 156 ms
82,944 KB
testcase_28 AC 152 ms
83,200 KB
testcase_29 AC 158 ms
82,688 KB
testcase_30 AC 136 ms
72,960 KB
testcase_31 AC 134 ms
73,216 KB
testcase_32 AC 133 ms
73,216 KB
testcase_33 AC 160 ms
82,688 KB
testcase_34 AC 157 ms
82,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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