結果

問題 No.646 逆ピラミッド
ユーザー shinwisteriashinwisteria
提出日時 2018-02-15 22:52:42
言語 Java
(openjdk 23)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 370 bytes
コンパイル時間 4,574 ms
コンパイル使用メモリ 74,368 KB
実行使用メモリ 41,956 KB
最終ジャッジ日時 2024-12-29 18:34:23
合計ジャッジ時間 7,009 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
41,132 KB
testcase_01 AC 216 ms
41,056 KB
testcase_02 AC 152 ms
41,144 KB
testcase_03 AC 218 ms
41,956 KB
testcase_04 AC 202 ms
41,616 KB
testcase_05 AC 181 ms
41,376 KB
testcase_06 AC 206 ms
41,064 KB
testcase_07 AC 149 ms
41,188 KB
testcase_08 AC 144 ms
41,448 KB
testcase_09 AC 148 ms
41,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;

import java.util.Scanner;

public class Gyakupiramid {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s = new Scanner(System.in);
		int N = s.nextInt();
		s.close();
		for(int i = N;i >= 1;i--){
			for(int k = 1;k <= i;k++){
				System.out.print(N);
			}
			System.out.println();
		}

	}

}
0