結果

問題 No.796 well known
ユーザー Beat7501Beat7501
提出日時 2019-10-25 20:01:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 539 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 2,229 ms
コンパイル使用メモリ 74,288 KB
実行使用メモリ 61,208 KB
最終ジャッジ日時 2024-07-21 20:05:43
合計ジャッジ時間 9,876 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,692 KB
testcase_01 AC 138 ms
53,856 KB
testcase_02 AC 132 ms
53,980 KB
testcase_03 AC 134 ms
53,956 KB
testcase_04 AC 516 ms
61,092 KB
testcase_05 AC 516 ms
60,900 KB
testcase_06 AC 532 ms
61,080 KB
testcase_07 AC 324 ms
60,556 KB
testcase_08 AC 524 ms
60,772 KB
testcase_09 AC 424 ms
60,836 KB
testcase_10 AC 539 ms
61,208 KB
testcase_11 AC 271 ms
58,408 KB
testcase_12 AC 407 ms
60,448 KB
testcase_13 AC 495 ms
61,104 KB
testcase_14 AC 369 ms
60,788 KB
testcase_15 AC 412 ms
60,784 KB
testcase_16 AC 531 ms
49,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main4{
	public static void main(String args[]){
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		System.out.print(1);
		for(int i = 0; i < n-1; i++){
			System.out.print(" "+3);
		}
		System.out.println();
	}
}
0