結果

問題 No.593 4進FizzBuzz
ユーザー naimonon77naimonon77
提出日時 2018-01-17 11:37:45
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 16,244 KB
最終ジャッジ日時 2024-12-24 06:39:57
合計ジャッジ時間 4,817 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
12,416 KB
testcase_01 AC 41 ms
12,160 KB
testcase_02 AC 41 ms
12,416 KB
testcase_03 AC 43 ms
12,160 KB
testcase_04 AC 42 ms
12,160 KB
testcase_05 AC 41 ms
12,288 KB
testcase_06 AC 42 ms
12,288 KB
testcase_07 AC 42 ms
12,288 KB
testcase_08 AC 42 ms
12,160 KB
testcase_09 AC 40 ms
12,416 KB
testcase_10 AC 41 ms
12,288 KB
testcase_11 AC 42 ms
12,160 KB
testcase_12 AC 40 ms
12,416 KB
testcase_13 AC 42 ms
12,288 KB
testcase_14 AC 43 ms
12,288 KB
testcase_15 AC 42 ms
12,160 KB
testcase_16 AC 55 ms
16,240 KB
testcase_17 AC 55 ms
16,116 KB
testcase_18 AC 56 ms
16,112 KB
testcase_19 AC 59 ms
15,984 KB
testcase_20 AC 55 ms
16,112 KB
testcase_21 AC 60 ms
16,112 KB
testcase_22 AC 61 ms
16,116 KB
testcase_23 AC 58 ms
16,244 KB
testcase_24 AC 57 ms
16,116 KB
testcase_25 AC 60 ms
16,240 KB
testcase_26 AC 62 ms
16,116 KB
testcase_27 AC 58 ms
16,116 KB
testcase_28 AC 57 ms
15,984 KB
testcase_29 AC 58 ms
16,112 KB
testcase_30 AC 55 ms
16,116 KB
testcase_31 AC 56 ms
16,244 KB
testcase_32 AC 57 ms
16,244 KB
testcase_33 AC 61 ms
16,244 KB
testcase_34 AC 59 ms
16,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-

from queue import Queue
import sys
import subprocess
import json
import time
import math
import re
#import sqlite3
import random
#import numpy as np
#from sklearn.datasets import fetch_mldata
#from statistics import mean, median, variance, stdev
#from chainer import cuda, Variable, FunctionSet, optimizers
#import chainer.functions as F

def FizzBuzz(str1):
    v = int(str1, 4)
    res = ""
    if (v % 3 == 0): res += "Fizz"
    if (v % 5 == 0): res += "Buzz"
    if (res == ""): return str1
    return res

str1 = input()
print(FizzBuzz(str1))



0