結果

問題 No.796 well known
ユーザー Maeda
提出日時 2025-09-08 10:58:40
言語 Java
(openjdk 23)
結果
AC  
実行時間 516 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 2,546 ms
コンパイル使用メモリ 77,284 KB
実行使用メモリ 56,812 KB
最終ジャッジ日時 2025-09-08 10:58:51
合計ジャッジ時間 9,495 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int n = scan.nextInt();
        for(int i = 0 ; i < n ; i++){
        	if(i == 0){
        		System.out.print(1 + " ");	
        	}else{
        		System.out.print(3 + " ");
        	}
        }
        System.out.println("");
    }
}
0