結果

問題 No.796 well known
ユーザー tentententen
提出日時 2020-10-09 09:10:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 512 bytes
コンパイル時間 1,769 ms
コンパイル使用メモリ 74,684 KB
実行使用メモリ 42,564 KB
最終ジャッジ日時 2024-07-20 06:39:51
合計ジャッジ時間 5,293 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,276 KB
testcase_01 AC 124 ms
41,408 KB
testcase_02 AC 125 ms
41,800 KB
testcase_03 AC 115 ms
41,500 KB
testcase_04 AC 148 ms
41,780 KB
testcase_05 AC 157 ms
42,556 KB
testcase_06 AC 150 ms
42,016 KB
testcase_07 AC 119 ms
40,676 KB
testcase_08 AC 151 ms
42,556 KB
testcase_09 AC 148 ms
42,080 KB
testcase_10 AC 152 ms
42,564 KB
testcase_11 AC 131 ms
41,524 KB
testcase_12 AC 151 ms
42,124 KB
testcase_13 AC 168 ms
41,896 KB
testcase_14 AC 138 ms
41,648 KB
testcase_15 AC 135 ms
41,912 KB
testcase_16 AC 150 ms
41,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] arr = new int[n];
        Arrays.fill(arr, 1);
        arr[0] = 4 - (n - 2) % 3;
        arr[1] = 3;
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < n; i++) {
            if (i > 0) {
                sb.append(" ");
            }
            sb.append(arr[i]);
        }
       System.out.println(sb);
    }
}
0