結果

問題 No.746 7の倍数
ユーザー tsuchinagatsuchinaga
提出日時 2019-03-07 12:07:29
言語 Go
(1.22.1)
結果
AC  
実行時間 494 ms / 2,000 ms
コード長 261 bytes
コンパイル時間 11,913 ms
コンパイル使用メモリ 233,504 KB
実行使用メモリ 8,332 KB
最終ジャッジ日時 2024-06-23 14:48:04
合計ジャッジ時間 14,228 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 494 ms
8,332 KB
testcase_04 AC 4 ms
7,944 KB
testcase_05 AC 11 ms
8,208 KB
testcase_06 AC 97 ms
8,316 KB
testcase_07 AC 51 ms
8,328 KB
testcase_08 AC 112 ms
8,328 KB
testcase_09 AC 49 ms
8,332 KB
testcase_10 AC 10 ms
8,200 KB
testcase_11 AC 253 ms
8,328 KB
testcase_12 AC 462 ms
8,332 KB
testcase_13 AC 165 ms
8,244 KB
testcase_14 AC 237 ms
8,272 KB
testcase_15 AC 195 ms
8,280 KB
testcase_16 AC 228 ms
8,200 KB
testcase_17 AC 190 ms
8,332 KB
testcase_18 AC 236 ms
8,316 KB
testcase_19 AC 182 ms
8,332 KB
testcase_20 AC 46 ms
8,320 KB
testcase_21 AC 19 ms
8,200 KB
testcase_22 AC 305 ms
8,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
	"strconv"
)

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

	if n == 0 {
		fmt.Println(0)
	} else {
		l := []int{1, 4, 2, 8, 5, 7}
		a := "0."
		for i := 0; i < n; i++ {
			a += strconv.Itoa(l[i%len(l)])
		}
		fmt.Println(a)
	}
}
0