結果

問題 No.796 well known
ユーザー Maeda
提出日時 2025-09-08 10:58:15
言語 Java
(openjdk 23)
結果
AC  
実行時間 529 ms / 2,000 ms
コード長 401 bytes
コンパイル時間 3,727 ms
コンパイル使用メモリ 77,356 KB
実行使用メモリ 51,968 KB
最終ジャッジ日時 2025-09-08 10:58:27
合計ジャッジ時間 10,917 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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();
        String ans = "13";
        for(int i = 0 ; i < n ; i++){
        	if(i == 0){
        		System.out.print(1 + " ");	
        	}else{
        		System.out.print(3 + " ");
        	}
        }
        System.out.println("");
    }
}
0