結果
問題 | No.9000 Hello World! (テスト用) |
ユーザー | seiichi3141 |
提出日時 | 2017-06-07 18:15:35 |
言語 | Go (1.22.1) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 349 bytes |
コンパイル時間 | 14,274 ms |
コンパイル使用メモリ | 235,540 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-07 11:44:53 |
合計ジャッジ時間 | 14,326 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
package main import ( "bufio" "fmt" "os" ) func stdin() (inputs []string) { scanner := bufio.NewScanner(os.Stdin) for scanner.Scan() { inputs = append(inputs, scanner.Text()) } return } // Run is a main process func Run(inputs []string) string { return fmt.Sprintln("Hello World!") } func main() { p := stdin() fmt.Println(Run(p)) }