結果
| 問題 |
No.9000 Hello World! (テスト用)
|
| ユーザー |
|
| 提出日時 | 2017-06-07 18:15:35 |
| 言語 | Go (1.23.4) |
| 結果 |
WA
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 349 bytes |
| コンパイル時間 | 17,177 ms |
| コンパイル使用メモリ | 229,232 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-25 14:49:33 |
| 合計ジャッジ時間 | 15,039 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 4 |
ソースコード
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))
}