結果

問題 No.796 well known
ユーザー きつねうどんきつねうどん
提出日時 2023-12-16 01:12:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 366 ms / 2,000 ms
コード長 592 bytes
コンパイル時間 3,730 ms
コンパイル使用メモリ 74,564 KB
実行使用メモリ 63,376 KB
最終ジャッジ日時 2024-09-27 06:47:05
合計ジャッジ時間 9,056 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,956 KB
testcase_01 AC 131 ms
54,036 KB
testcase_02 AC 132 ms
53,972 KB
testcase_03 AC 134 ms
54,124 KB
testcase_04 AC 335 ms
63,124 KB
testcase_05 AC 341 ms
63,168 KB
testcase_06 AC 365 ms
63,264 KB
testcase_07 AC 243 ms
57,224 KB
testcase_08 AC 341 ms
63,136 KB
testcase_09 AC 293 ms
59,672 KB
testcase_10 AC 366 ms
63,268 KB
testcase_11 AC 199 ms
54,420 KB
testcase_12 AC 279 ms
58,876 KB
testcase_13 AC 326 ms
63,092 KB
testcase_14 AC 261 ms
57,808 KB
testcase_15 AC 282 ms
58,892 KB
testcase_16 AC 353 ms
63,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class WellKnown {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int N = scanner.nextInt();
        int div = N / 3;
        int remain = N % 3;
        if (remain == 2) {
            System.out.print("1 3");
        } else if (remain == 1) {
            System.out.print("1 1 2 3");
            div = div - 1;
        } else {
            System.out.print("3 3 1");
            div = div - 1;
        }

        for (int i = 0; i < div; i++) {
            System.out.print(" 1 1 1");
        }
    }
}
0