結果

問題 No.646 逆ピラミッド
ユーザー tsunabittsunabit
提出日時 2018-07-15 15:16:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 367 bytes
コンパイル時間 4,311 ms
コンパイル使用メモリ 76,032 KB
実行使用メモリ 54,544 KB
最終ジャッジ日時 2024-11-06 13:08:42
合計ジャッジ時間 6,504 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
54,020 KB
testcase_01 AC 203 ms
54,052 KB
testcase_02 AC 135 ms
54,192 KB
testcase_03 AC 194 ms
54,260 KB
testcase_04 AC 184 ms
54,180 KB
testcase_05 AC 175 ms
54,544 KB
testcase_06 AC 204 ms
54,388 KB
testcase_07 AC 135 ms
54,096 KB
testcase_08 AC 136 ms
54,016 KB
testcase_09 AC 144 ms
53,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.Stream;
import java.time.*;
import java.time.format.*;

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

		}
	}
}
0