結果
問題 | No.646 逆ピラミッド |
ユーザー |
|
提出日時 | 2019-08-06 15:12:31 |
言語 | Go (1.23.4) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 175 bytes |
コンパイル時間 | 10,626 ms |
コンパイル使用メモリ | 238,536 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-18 13:57:50 |
合計ジャッジ時間 | 9,911 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 7 |
ソースコード
package main import ( "fmt" "strconv" "strings" ) func main() { var n int fmt.Scan(&n) for i := n; i > 0; i-- { fmt.Println(strings.Repeat(strconv.Itoa(n), i)) } }