結果
問題 | No.597 concat |
ユーザー |
|
提出日時 | 2019-08-06 14:16:08 |
言語 | Go (1.23.4) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 157 bytes |
コンパイル時間 | 10,857 ms |
コンパイル使用メモリ | 242,056 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-18 13:56:02 |
合計ジャッジ時間 | 10,935 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 11 |
ソースコード
package mainimport "fmt"func main() {var n intvar s stringfmt.Scan(&n)for i := 0; i < n; i++ {fmt.Scan(&s)fmt.Print(s)}fmt.Println()}