結果
| 問題 |
No.1841 Long Long
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-02-22 23:57:42 |
| 言語 | Go (1.23.4) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 207 bytes |
| コンパイル時間 | 14,147 ms |
| コンパイル使用メモリ | 224,012 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-06-30 23:29:32 |
| 合計ジャッジ時間 | 14,558 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 15 |
ソースコード
package main
import (
"fmt"
"os"
"strconv"
)
func main() {
strNum := os.Args[1]
num, err := strconv.Atoi(strNum)
if err != nil {
panic(err)
}
for i := 0; i < num; i++ {
fmt.Print("Long")
}
}