結果

問題 No.593 4進FizzBuzz
ユーザー tsuchinagatsuchinaga
提出日時 2019-03-05 12:49:30
言語 Go
(1.22.1)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 354 bytes
コンパイル時間 12,304 ms
コンパイル使用メモリ 228,696 KB
実行使用メモリ 14,100 KB
最終ジャッジ日時 2024-06-23 14:15:44
合計ジャッジ時間 52,155 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 1,994 ms
11,992 KB
testcase_17 AC 1,989 ms
11,988 KB
testcase_18 AC 1,958 ms
11,988 KB
testcase_19 AC 1,971 ms
14,096 KB
testcase_20 AC 1,979 ms
11,988 KB
testcase_21 AC 1,981 ms
11,988 KB
testcase_22 AC 1,978 ms
14,100 KB
testcase_23 AC 1,976 ms
11,992 KB
testcase_24 AC 1,980 ms
11,992 KB
testcase_25 TLE -
testcase_26 AC 1,992 ms
14,096 KB
testcase_27 AC 1,965 ms
14,096 KB
testcase_28 AC 1,979 ms
11,992 KB
testcase_29 AC 1,989 ms
14,096 KB
testcase_30 AC 1,985 ms
11,996 KB
testcase_31 AC 1,980 ms
11,992 KB
testcase_32 AC 1,955 ms
11,992 KB
testcase_33 AC 1,994 ms
14,100 KB
testcase_34 AC 1,954 ms
11,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
	"strconv"
)

func main() {
	var n string
	_, _ = fmt.Scan(&n)

	m := 0
	for i := 0; i < len(n); i++ {
		a, _ := strconv.Atoi(string(n[i]))
		m = (m*4 + a) % 15
	}

	if m == 0 {
		fmt.Println("FizzBuzz")
	} else if m%3 == 0 {
		fmt.Println("Fizz")
	} else if m%5 == 0 {
		fmt.Println("Buzz")
	} else {
		fmt.Println(n)
	}
}
0