結果

問題 No.1528 Not 1
ユーザー ks2mks2m
提出日時 2021-06-04 20:35:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 725 bytes
コンパイル時間 2,086 ms
コンパイル使用メモリ 74,136 KB
実行使用メモリ 44,456 KB
最終ジャッジ日時 2024-04-30 00:06:53
合計ジャッジ時間 6,728 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
40,052 KB
testcase_01 AC 192 ms
43,120 KB
testcase_02 AC 159 ms
41,468 KB
testcase_03 AC 163 ms
41,868 KB
testcase_04 AC 185 ms
42,332 KB
testcase_05 AC 143 ms
40,800 KB
testcase_06 AC 161 ms
42,620 KB
testcase_07 AC 184 ms
42,296 KB
testcase_08 AC 163 ms
41,600 KB
testcase_09 AC 162 ms
41,640 KB
testcase_10 AC 167 ms
41,552 KB
testcase_11 AC 131 ms
41,224 KB
testcase_12 AC 127 ms
41,380 KB
testcase_13 AC 127 ms
41,132 KB
testcase_14 AC 125 ms
41,148 KB
testcase_15 AC 127 ms
41,236 KB
testcase_16 AC 128 ms
41,128 KB
testcase_17 AC 118 ms
40,620 KB
testcase_18 AC 184 ms
44,064 KB
testcase_19 AC 194 ms
44,456 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