結果
問題 | No.593 4進FizzBuzz |
ユーザー | mnr |
提出日時 | 2020-03-05 23:03:01 |
言語 | PyPy2 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 394 bytes |
コンパイル時間 | 671 ms |
コンパイル使用メモリ | 77,184 KB |
実行使用メモリ | 232,348 KB |
最終ジャッジ日時 | 2024-10-14 02:28:38 |
合計ジャッジ時間 | 6,116 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 81 ms
80,128 KB |
testcase_01 | AC | 80 ms
75,136 KB |
testcase_02 | AC | 84 ms
75,264 KB |
testcase_03 | AC | 83 ms
75,136 KB |
testcase_04 | AC | 81 ms
75,392 KB |
testcase_05 | AC | 82 ms
75,520 KB |
testcase_06 | AC | 82 ms
75,264 KB |
testcase_07 | AC | 81 ms
75,008 KB |
testcase_08 | AC | 82 ms
75,520 KB |
testcase_09 | AC | 84 ms
75,520 KB |
testcase_10 | AC | 84 ms
75,008 KB |
testcase_11 | AC | 84 ms
75,392 KB |
testcase_12 | AC | 83 ms
75,264 KB |
testcase_13 | AC | 83 ms
75,392 KB |
testcase_14 | AC | 83 ms
75,008 KB |
testcase_15 | AC | 81 ms
75,264 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 | -- | - |
ソースコード
def fzbz(n): l = list(str(n)) sum = 0 for i in l: sum += int(i) if sum % 3 == 0 and l[-1] == '0': print("FizzBuzz") elif sum % 3 == 0 and l[-1] == '5': print("FizzBuzz") elif sum % 3 == 0: print("Fizz") elif l[-1] == '0' or l[-1] == '5': print("Buzz") else: print(N) N = int(input()) n10 = int(str(N),4) fzbz(n10)