結果

問題 No.646 逆ピラミッド
ユーザー GBGB
提出日時 2018-04-26 16:45:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 392 bytes
コンパイル時間 1,977 ms
コンパイル使用メモリ 74,276 KB
実行使用メモリ 38,944 KB
最終ジャッジ日時 2024-06-27 21:10:53
合計ジャッジ時間 3,363 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,772 KB
testcase_01 AC 133 ms
38,944 KB
testcase_02 AC 50 ms
36,636 KB
testcase_03 AC 128 ms
38,364 KB
testcase_04 AC 103 ms
38,164 KB
testcase_05 AC 80 ms
37,600 KB
testcase_06 AC 124 ms
38,852 KB
testcase_07 AC 50 ms
36,812 KB
testcase_08 AC 49 ms
36,912 KB
testcase_09 AC 51 ms
36,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.lang.*;

class Main{
  public static void main(String[] args) throws IOException{
    BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
    int n=Integer.parseInt(br.readLine());

    for (int i=n;i>=1 ;i-- ) {
      for (int j=1;j<=i ;j++ ) {
        System.out.print(n);
      }
      System.out.println();
    }
  }
}
0