結果

問題 No.1528 Not 1
ユーザー ks2mks2m
提出日時 2021-06-04 20:35:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 725 bytes
コンパイル時間 2,140 ms
コンパイル使用メモリ 74,840 KB
実行使用メモリ 56,468 KB
最終ジャッジ日時 2024-11-19 09:38:17
合計ジャッジ時間 6,759 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
54,060 KB
testcase_01 AC 174 ms
56,060 KB
testcase_02 AC 148 ms
54,068 KB
testcase_03 AC 160 ms
56,132 KB
testcase_04 AC 179 ms
56,052 KB
testcase_05 AC 136 ms
53,996 KB
testcase_06 AC 162 ms
56,388 KB
testcase_07 AC 176 ms
56,124 KB
testcase_08 AC 156 ms
54,176 KB
testcase_09 AC 150 ms
53,664 KB
testcase_10 AC 161 ms
54,376 KB
testcase_11 AC 108 ms
53,280 KB
testcase_12 AC 120 ms
53,892 KB
testcase_13 AC 119 ms
54,216 KB
testcase_14 AC 117 ms
54,296 KB
testcase_15 AC 116 ms
53,004 KB
testcase_16 AC 120 ms
54,004 KB
testcase_17 AC 108 ms
52,980 KB
testcase_18 AC 180 ms
55,524 KB
testcase_19 AC 187 ms
56,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		sc.close();

		if (n % 2 == 0) {
			StringBuilder sb = new StringBuilder();
			for (int i = 2; i <= n; i += 2) {
				sb.append(i).append(' ');
			}
			sb.deleteCharAt(sb.length() - 1);
			System.out.println(sb.toString());

		} else if (n == 1) {
			System.out.println(1);

		} else if (n == 3 || n == 5) {
			System.out.println(-1);

		} else {
			StringBuilder sb = new StringBuilder();
			for (int i = 2; i <= n; i += 2) {
				if (i != 6) {
					sb.append(i).append(' ');
				}
			}
			sb.append("6 3");
			System.out.println(sb.toString());
		}
	}
}
0