結果

問題 No.646 逆ピラミッド
ユーザー aikon_marimoaikon_marimo
提出日時 2018-02-10 21:47:04
言語 Java
(openjdk 23)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 2,133 ms
コンパイル使用メモリ 73,952 KB
実行使用メモリ 54,452 KB
最終ジャッジ日時 2024-11-06 08:47:44
合計ジャッジ時間 4,622 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
53,996 KB
testcase_01 AC 206 ms
54,320 KB
testcase_02 AC 139 ms
53,964 KB
testcase_03 AC 197 ms
54,340 KB
testcase_04 AC 179 ms
54,452 KB
testcase_05 AC 164 ms
54,316 KB
testcase_06 AC 203 ms
54,040 KB
testcase_07 AC 140 ms
53,768 KB
testcase_08 AC 138 ms
54,268 KB
testcase_09 AC 142 ms
54,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner in = new Scanner(System.in);
		
		int N = in.nextInt();
		
		for (int i = 0; i < N; i++) {
			for (int j = 0; j < N-i; j++) {
				System.out.print(N);
			}
			System.out.println();
		}
		
		in.close();
	}
}
0