結果

問題 No.796 well known
ユーザー tsunabittsunabit
提出日時 2019-07-12 22:06:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 477 ms / 2,000 ms
コード長 331 bytes
コンパイル時間 3,433 ms
コンパイル使用メモリ 74,388 KB
実行使用メモリ 50,944 KB
最終ジャッジ日時 2024-11-18 20:32:37
合計ジャッジ時間 9,876 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
41,128 KB
testcase_01 AC 118 ms
41,420 KB
testcase_02 AC 118 ms
40,228 KB
testcase_03 AC 118 ms
41,312 KB
testcase_04 AC 464 ms
49,292 KB
testcase_05 AC 434 ms
48,736 KB
testcase_06 AC 460 ms
49,640 KB
testcase_07 AC 277 ms
49,208 KB
testcase_08 AC 420 ms
49,680 KB
testcase_09 AC 382 ms
49,092 KB
testcase_10 AC 393 ms
49,512 KB
testcase_11 AC 242 ms
47,060 KB
testcase_12 AC 371 ms
44,272 KB
testcase_13 AC 398 ms
50,944 KB
testcase_14 AC 337 ms
49,248 KB
testcase_15 AC 349 ms
49,432 KB
testcase_16 AC 477 ms
49,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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