結果

問題 No.796 well known
ユーザー NoiriNoiri
提出日時 2019-03-24 05:28:12
言語 Go
(1.22.1)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 178 bytes
コンパイル時間 12,819 ms
コンパイル使用メモリ 214,316 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-26 02:25:39
合計ジャッジ時間 15,442 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,348 KB
testcase_01 AC 1 ms
4,348 KB
testcase_02 AC 1 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 109 ms
4,348 KB
testcase_05 AC 118 ms
4,348 KB
testcase_06 AC 143 ms
4,348 KB
testcase_07 AC 32 ms
4,348 KB
testcase_08 AC 118 ms
4,348 KB
testcase_09 AC 78 ms
4,348 KB
testcase_10 AC 140 ms
4,348 KB
testcase_11 AC 19 ms
4,348 KB
testcase_12 AC 63 ms
4,348 KB
testcase_13 AC 106 ms
4,348 KB
testcase_14 AC 48 ms
4,348 KB
testcase_15 AC 68 ms
4,348 KB
testcase_16 AC 141 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
	"strconv"
)

func main() {
	var s string
	fmt.Scan(&s)
	n, _ := strconv.Atoi(s)
	for i:=0; i<n-1; i++ {
		fmt.Print(3, " ")
	}
	fmt.Println(1);
}

0