結果

問題 No.646 逆ピラミッド
ユーザー QED0302
提出日時 2018-05-08 17:17:14
言語 Java
(openjdk 23)
結果
RE  
実行時間 -
コード長 258 bytes
コンパイル時間 1,941 ms
コンパイル使用メモリ 74,120 KB
実行使用メモリ 52,236 KB
最終ジャッジ日時 2024-06-28 02:27:59
合計ジャッジ時間 2,918 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

class exe{
	public static void main(String[] args){
		int intnum = Integer.parseInt(args[0]);
		for(int i = intnum;i ==0;i--){
			for (int k = intnum;k == 0;k-- ) {
				System.out.print(args[0]);
			}
			System.out.println();
		}
		System.out.println();
	}
}
0