結果
| 問題 |
No.841 8/32
|
| コンテスト | |
| ユーザー |
otameshiUser
|
| 提出日時 | 2019-07-09 13:17:07 |
| 言語 | Go (1.23.4) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 171 bytes |
| コンパイル時間 | 13,665 ms |
| コンパイル使用メモリ | 232,688 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-10-12 00:42:44 |
| 合計ジャッジ時間 | 13,536 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 21 |
ソースコード
package main
import "fmt"
func main() {
var input1 string
var input2 string
fmt.Scan(&input1)
fmt.Scan(&input2)
fmt.Printf("%s-%s", input1, input2)
}
otameshiUser