結果

問題 No.646 逆ピラミッド
ユーザー Pump0129Pump0129
提出日時 2018-03-26 11:33:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 402 bytes
コンパイル時間 2,226 ms
コンパイル使用メモリ 74,180 KB
実行使用メモリ 42,016 KB
最終ジャッジ日時 2024-06-25 06:43:19
合計ジャッジ時間 4,166 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
40,024 KB
testcase_01 AC 193 ms
42,016 KB
testcase_02 AC 121 ms
41,384 KB
testcase_03 AC 177 ms
41,784 KB
testcase_04 AC 162 ms
41,904 KB
testcase_05 AC 161 ms
41,528 KB
testcase_06 AC 184 ms
41,956 KB
testcase_07 AC 124 ms
41,236 KB
testcase_08 AC 112 ms
40,136 KB
testcase_09 AC 128 ms
41,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package net.ipipip0129.yukicoder.no646;

import java.util.Scanner;

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