結果

問題 No.646 逆ピラミッド
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 14:54:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 2,086 ms
コンパイル使用メモリ 74,392 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-09-13 09:59:25
合計ジャッジ時間 4,084 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,040 KB
testcase_01 AC 142 ms
53,784 KB
testcase_02 AC 133 ms
54,200 KB
testcase_03 AC 144 ms
54,096 KB
testcase_04 AC 139 ms
53,952 KB
testcase_05 AC 140 ms
54,096 KB
testcase_06 AC 143 ms
53,932 KB
testcase_07 AC 131 ms
54,204 KB
testcase_08 AC 131 ms
53,744 KB
testcase_09 AC 135 ms
54,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		int n = sc.nextInt();
		
		for (int i=n; i>=1; i--) {
			StringBuilder sb = new StringBuilder();
			for (int j=0; j<i; j++) {
				sb.append(n);
			}
			System.out.println(sb);
		}
		
	}
}
0