結果

問題 No.2655 Increasing Strides
ユーザー ks2mks2m
提出日時 2024-03-01 21:34:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 790 bytes
コンパイル時間 2,360 ms
コンパイル使用メモリ 77,236 KB
実行使用メモリ 54,324 KB
最終ジャッジ日時 2024-09-29 13:35:25
合計ジャッジ時間 7,523 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
53,000 KB
testcase_01 AC 116 ms
54,124 KB
testcase_02 AC 116 ms
53,848 KB
testcase_03 AC 122 ms
54,164 KB
testcase_04 AC 102 ms
54,240 KB
testcase_05 AC 114 ms
54,324 KB
testcase_06 AC 115 ms
54,168 KB
testcase_07 AC 115 ms
53,932 KB
testcase_08 AC 115 ms
54,004 KB
testcase_09 AC 119 ms
53,968 KB
testcase_10 AC 113 ms
53,720 KB
testcase_11 AC 102 ms
52,756 KB
testcase_12 AC 111 ms
53,620 KB
testcase_13 AC 119 ms
54,084 KB
testcase_14 AC 111 ms
54,080 KB
testcase_15 AC 104 ms
52,960 KB
testcase_16 AC 102 ms
52,964 KB
testcase_17 AC 106 ms
52,720 KB
testcase_18 AC 105 ms
53,104 KB
testcase_19 AC 110 ms
53,536 KB
testcase_20 AC 115 ms
54,120 KB
testcase_21 AC 106 ms
52,812 KB
testcase_22 AC 111 ms
53,940 KB
testcase_23 AC 117 ms
53,868 KB
testcase_24 AC 113 ms
54,172 KB
testcase_25 AC 101 ms
52,776 KB
testcase_26 AC 113 ms
53,368 KB
testcase_27 AC 114 ms
53,256 KB
testcase_28 AC 114 ms
53,684 KB
testcase_29 AC 106 ms
53,092 KB
testcase_30 AC 129 ms
54,068 KB
testcase_31 AC 113 ms
54,120 KB
testcase_32 AC 111 ms
54,300 KB
testcase_33 AC 106 ms
52,980 KB
testcase_34 AC 129 ms
54,104 KB
testcase_35 AC 108 ms
53,032 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();

		long s0 = 0;
		long s1 = 0;
		for (int i = 2; i <= n; i += 2) {
			s0 += i;
		}
		for (int i = 1; i <= n; i += 2) {
			s1 += i;
		}
		if (s0 % 2 != 0 || s1 % 2 != 0) {
			System.out.println("No");
			return;
		}
		s0 /= 2;
		s1 /= 2;

		int start = n;
		if (n % 2 == 1) {
			start--;
		}
		for (int i = start; i > 0; i -= 2) {
			if (i <= s0) {
				s0 -= i;
			}
		}

		start = n;
		if (n % 2 == 0) {
			start--;
		}
		for (int i = start; i > 0; i -= 2) {
			if (i <= s1) {
				s1 -= i;
			}
		}

		if (s0 == 0 && s1 == 0) {
			System.out.println("Yes");
		} else {
			System.out.println("No");
		}
	}
}
0