結果

問題 No.646 逆ピラミッド
ユーザー fabled2468fabled2468
提出日時 2018-09-26 22:39:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 506 bytes
コンパイル時間 3,571 ms
コンパイル使用メモリ 74,484 KB
実行使用メモリ 54,156 KB
最終ジャッジ日時 2024-10-12 04:11:39
合計ジャッジ時間 5,677 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,772 KB
testcase_01 AC 137 ms
53,944 KB
testcase_02 AC 124 ms
53,988 KB
testcase_03 AC 120 ms
53,212 KB
testcase_04 AC 129 ms
54,156 KB
testcase_05 AC 127 ms
54,036 KB
testcase_06 AC 124 ms
53,188 KB
testcase_07 AC 119 ms
53,828 KB
testcase_08 AC 112 ms
53,276 KB
testcase_09 AC 121 ms
53,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.StringJoiner;

public class No646_ReversePiramid {
    public static void main(String[] args) {

        Scanner scan = new Scanner(System.in);
        int value1 = scan.nextInt();
        scan.close();

        for (int i = value1; i > 0; i--) {
            StringJoiner text = new StringJoiner("");
            for (int j = i; j > 0; j--) {
                text.add(String.valueOf(value1));
            }
            System.out.println(text);
        }
    }
}
0