結果

問題 No.646 逆ピラミッド
ユーザー Freed_0929Freed_0929
提出日時 2018-02-09 22:23:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 5,876 ms
コンパイル使用メモリ 74,292 KB
実行使用メモリ 42,160 KB
最終ジャッジ日時 2024-10-08 15:16:18
合計ジャッジ時間 4,317 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,584 KB
testcase_01 AC 196 ms
42,160 KB
testcase_02 AC 127 ms
41,116 KB
testcase_03 AC 186 ms
41,848 KB
testcase_04 AC 174 ms
41,384 KB
testcase_05 AC 146 ms
41,284 KB
testcase_06 AC 187 ms
41,940 KB
testcase_07 AC 125 ms
41,004 KB
testcase_08 AC 129 ms
40,952 KB
testcase_09 AC 134 ms
41,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    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