結果

問題 No.964 2020
ユーザー 37zigen37zigen
提出日時 2020-01-13 20:45:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,020 ms
コード長 563 bytes
コンパイル時間 2,529 ms
コンパイル使用メモリ 74,112 KB
実行使用メモリ 41,528 KB
最終ジャッジ日時 2024-12-21 16:40:52
合計ジャッジ時間 3,825 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,036 KB
testcase_01 AC 118 ms
41,248 KB
testcase_02 AC 121 ms
41,528 KB
testcase_03 AC 118 ms
41,196 KB
testcase_04 AC 117 ms
41,332 KB
testcase_05 AC 137 ms
41,416 KB
testcase_06 AC 138 ms
41,424 KB
testcase_07 AC 118 ms
41,424 KB
testcase_08 AC 125 ms
41,312 KB
testcase_09 AC 133 ms
41,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

// This file is a "Hello, world!" in Java language by OpenJDK for wandbox.

class Main
{
	public static void main(String[] args)
	{
		new Main().run();
	}
	
	void run(){
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		for(int j=9;j>9-N;--j)
			for(int i=9;i>9-N;--i){
				System.out.print(i);
			}
		System.out.println();
	}
	
	void tr(Object...o){System.out.println(Arrays.deepToString(o));}
}
// OpenJDK reference:
//   http://openjdk.java.net/

// Java language references:
//   http://docs.oracle.com/javase
0