結果
問題 | No.252 "良問"(良問とは言っていない (2) |
ユーザー | fmhr |
提出日時 | 2015-07-25 19:33:33 |
言語 | Go1.4 (1.4.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 395 bytes |
コンパイル時間 | 481 ms |
コンパイル使用メモリ | 32,668 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-25 00:34:57 |
合計ジャッジ時間 | 6,209 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
ソースコード
package main import ( "bufio" "fmt" "os" "strconv" ) func main() { a := nextInt() for i:=0; i<a; i++{ solve() } } func solve(){ s := next() fmt.Scan(&s) fmt.Println(len(s)) } var s = bufio.NewScanner(os.Stdin) func next() string { s.Split(bufio.ScanWords) s.Scan() return s.Text() } func nextInt() int { i, e := strconv.Atoi(next()) if e != nil { panic(e) } return i }