結果

問題 No.964 2020
ユーザー masa_ahemasa_ahe
提出日時 2020-03-12 13:43:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 170 ms / 2,020 ms
コード長 282 bytes
コンパイル時間 2,436 ms
コンパイル使用メモリ 75,952 KB
実行使用メモリ 42,624 KB
最終ジャッジ日時 2024-11-17 19:52:56
合計ジャッジ時間 4,801 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
42,244 KB
testcase_01 AC 149 ms
42,564 KB
testcase_02 AC 150 ms
42,624 KB
testcase_03 AC 161 ms
42,192 KB
testcase_04 AC 157 ms
42,540 KB
testcase_05 AC 149 ms
42,328 KB
testcase_06 AC 161 ms
42,568 KB
testcase_07 AC 170 ms
42,260 KB
testcase_08 AC 150 ms
42,412 KB
testcase_09 AC 147 ms
42,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		int x=sc.nextInt();
		String ans="";
		for(int i=1;i<=x;i++){
			int tmp=x;
			while(tmp>0){
				tmp--;
				ans+=(i%10);
			}
		}
		System.out.println(ans);
	}
}
0