結果

問題 No.5000 特殊ジャッジテスト(テスト用)
ユーザー yuki2006yuki2006
提出日時 2015-05-04 06:08:34
言語 Go
(1.22.1)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 751 bytes
コンパイル時間 1,955 ms
実行使用メモリ 3,116 KB
スコア 996
最終ジャッジ日時 2022-11-29 09:45:36
合計ジャッジ時間 2,903 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
3,112 KB
testcase_01 AC 2 ms
3,116 KB
testcase_02 AC 1 ms
3,116 KB
testcase_03 AC 1 ms
3,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"os"
	"bufio"
	"strconv"
	"fmt"
	"strings"
)

var s = bufio.NewScanner(os.Stdin)

func next() string {
	s.Split(bufio.ScanWords)
	s.Scan()
	return s.Text()
}
func nextLine() string {
	s.Split(bufio.ScanLines)
	s.Scan()
	return s.Text()
}

func nextInt() int {
	i, e := strconv.Atoi(next())
	if e != nil {
		panic(e)
	}
	return i
}
func nextLong() int64 {
	i, e := strconv.ParseInt(next(), 10, 64)
	if e != nil {
		panic(e)
	}
	return i
}
func mapToString(arr []int) []string {
	ret := make([]string, len(arr))
	for i := 0; i < len(arr); i++ {
		ret[i] = strconv.Itoa(arr[i])
	}
	return ret
}


func PrintI(args ...int) {
	fmt.Println(strings.Join(mapToString(args), " "))
}




func main() {

	N := nextInt()
	PrintI(0, N)


}
0