結果

問題 No.646 逆ピラミッド
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-04-26 23:02:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 2,000 ms
コンパイル使用メモリ 74,132 KB
実行使用メモリ 54,552 KB
最終ジャッジ日時 2024-06-27 21:16:01
合計ジャッジ時間 4,260 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,236 KB
testcase_01 AC 194 ms
54,260 KB
testcase_02 AC 128 ms
54,256 KB
testcase_03 AC 187 ms
54,476 KB
testcase_04 AC 174 ms
54,208 KB
testcase_05 AC 158 ms
54,128 KB
testcase_06 AC 195 ms
54,552 KB
testcase_07 AC 132 ms
53,964 KB
testcase_08 AC 131 ms
53,868 KB
testcase_09 AC 136 ms
53,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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();
        }
    }
}
0