結果

問題 No.796 well known
ユーザー htensaihtensai
提出日時 2019-11-11 19:23:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 613 bytes
コンパイル時間 2,219 ms
コンパイル使用メモリ 74,204 KB
実行使用メモリ 41,972 KB
最終ジャッジ日時 2024-09-15 05:20:40
合計ジャッジ時間 5,993 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
40,784 KB
testcase_01 AC 128 ms
40,972 KB
testcase_02 AC 129 ms
41,232 KB
testcase_03 AC 114 ms
39,880 KB
testcase_04 AC 170 ms
41,124 KB
testcase_05 AC 164 ms
41,780 KB
testcase_06 AC 179 ms
41,868 KB
testcase_07 AC 150 ms
41,024 KB
testcase_08 AC 177 ms
41,972 KB
testcase_09 AC 170 ms
41,848 KB
testcase_10 AC 177 ms
41,876 KB
testcase_11 AC 149 ms
40,972 KB
testcase_12 AC 152 ms
41,532 KB
testcase_13 AC 172 ms
41,272 KB
testcase_14 AC 151 ms
41,608 KB
testcase_15 AC 153 ms
41,724 KB
testcase_16 AC 181 ms
41,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static TreeSet<Integer> primes;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int mod = (n - 1) % 3;
		int count = (n - 1) / 3 * 3;
		if (mod == 0) {
		    count--;
		}
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < count; i++) {
		    sb.append(1).append(" ");
		}
		if (mod == 0) {
		    sb.append(2).append(" ");
		} else if (mod == 1) {
		    sb.append(1).append(" ");
		} else {
		    sb.append(2).append(" ").append(2).append(" ");
		}
		sb.append(3);
		System.out.println(sb);
	}
}
0