結果

問題 No.646 逆ピラミッド
ユーザー yamax3232yamax3232
提出日時 2018-03-14 11:23:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 1,981 ms
コンパイル使用メモリ 73,804 KB
実行使用メモリ 41,992 KB
最終ジャッジ日時 2024-05-05 10:22:20
合計ジャッジ時間 4,073 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,276 KB
testcase_01 AC 163 ms
41,344 KB
testcase_02 AC 96 ms
40,256 KB
testcase_03 AC 171 ms
41,720 KB
testcase_04 AC 169 ms
41,992 KB
testcase_05 AC 131 ms
40,960 KB
testcase_06 AC 159 ms
41,032 KB
testcase_07 AC 114 ms
41,276 KB
testcase_08 AC 105 ms
40,648 KB
testcase_09 AC 115 ms
41,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner kb=new Scanner(System.in);
		int a=kb.nextInt();
		int j=a;
		for(int i=0;i<a;i++){
			for(int k=0;k<j;k++){
				System.out.print(a);

			}
			System.out.println();
			j--;
		}



	}

}
0