結果

問題 No.646 逆ピラミッド
ユーザー YOSHIYOSHI
提出日時 2021-03-22 18:48:08
言語 Java
(openjdk 23)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 456 bytes
コンパイル時間 3,044 ms
コンパイル使用メモリ 73,260 KB
実行使用メモリ 38,652 KB
最終ジャッジ日時 2024-11-24 05:47:33
合計ジャッジ時間 4,580 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,892 KB
testcase_01 AC 135 ms
38,592 KB
testcase_02 AC 50 ms
36,800 KB
testcase_03 AC 122 ms
38,556 KB
testcase_04 AC 98 ms
37,952 KB
testcase_05 AC 76 ms
37,588 KB
testcase_06 AC 122 ms
38,652 KB
testcase_07 AC 53 ms
36,920 KB
testcase_08 AC 52 ms
36,808 KB
testcase_09 AC 52 ms
37,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No00000646_Main {
	static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
	public static void main(String[] args) throws IOException {
		String ns = br.readLine();
		int n = Integer.parseInt(ns);
		for(int i = n; 0 < i; i--) {
			for(int j = 0; j < i; j++) {
				System.out.print(ns);
			}
			System.out.println();
		}
	}
}
0