結果
問題 | No.252 "良問"(良問とは言っていない (2) |
ユーザー | fmhr |
提出日時 | 2015-07-25 19:27:19 |
言語 | Go (1.23.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 175 bytes |
コンパイル時間 | 10,955 ms |
コンパイル使用メモリ | 232,756 KB |
実行使用メモリ | 7,896 KB |
最終ジャッジ日時 | 2024-10-10 19:26:20 |
合計ジャッジ時間 | 18,610 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
ソースコード
package main import ( "fmt" ) func main() { solve() } func solve(){ var a int fmt.Scan(&a) for i:=0; i<a; i++{ var s string fmt.Scan(&s) fmt.Println(len(s)) } }