結果

問題 No.646 逆ピラミッド
ユーザー Yosuke YamaguchiYosuke Yamaguchi
提出日時 2021-01-10 21:25:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 513 bytes
コンパイル時間 4,031 ms
コンパイル使用メモリ 76,760 KB
実行使用メモリ 55,244 KB
最終ジャッジ日時 2024-11-21 08:34:43
合計ジャッジ時間 6,370 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 163 ms
54,928 KB
testcase_01 AC 188 ms
55,160 KB
testcase_02 AC 164 ms
54,768 KB
testcase_03 AC 180 ms
55,060 KB
testcase_04 AC 177 ms
55,104 KB
testcase_05 AC 173 ms
54,936 KB
testcase_06 AC 191 ms
55,244 KB
testcase_07 AC 164 ms
54,844 KB
testcase_08 AC 171 ms
54,716 KB
testcase_09 AC 163 ms
54,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

// https://yukicoder.me/problems/no/646
public class ReversePyramid646 {
  public static void main(String[] args) {
    // 標準入力から読み込む際に、Scan
    Scanner sc = new Scanner(System.in);

    // String 1つ分を読み込む
    int n = Integer.parseInt(sc.next());
    for (int i = 0; i < n; i++) {
      String number = "";
      int m = n - i;
      for (int j = 0; j < m; j++) {
        number += "" + n;
      }
      System.out.println(number);
    }

  }
}
0