結果

問題 No.2655 Increasing Strides
ユーザー ks2mks2m
提出日時 2024-03-01 21:25:26
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 292 bytes
コンパイル時間 2,796 ms
コンパイル使用メモリ 74,464 KB
実行使用メモリ 56,112 KB
最終ジャッジ日時 2024-09-29 13:28:10
合計ジャッジ時間 8,494 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,888 KB
testcase_01 AC 125 ms
54,264 KB
testcase_02 AC 124 ms
54,168 KB
testcase_03 AC 125 ms
54,104 KB
testcase_04 AC 127 ms
54,228 KB
testcase_05 AC 115 ms
53,068 KB
testcase_06 WA -
testcase_07 AC 113 ms
52,908 KB
testcase_08 AC 129 ms
54,024 KB
testcase_09 AC 129 ms
54,136 KB
testcase_10 AC 130 ms
54,268 KB
testcase_11 WA -
testcase_12 AC 118 ms
52,992 KB
testcase_13 AC 117 ms
52,976 KB
testcase_14 WA -
testcase_15 AC 113 ms
52,964 KB
testcase_16 AC 124 ms
54,092 KB
testcase_17 AC 125 ms
53,988 KB
testcase_18 AC 112 ms
52,760 KB
testcase_19 AC 123 ms
54,032 KB
testcase_20 WA -
testcase_21 AC 126 ms
54,300 KB
testcase_22 WA -
testcase_23 AC 114 ms
52,728 KB
testcase_24 AC 127 ms
53,952 KB
testcase_25 AC 126 ms
53,908 KB
testcase_26 WA -
testcase_27 AC 128 ms
54,060 KB
testcase_28 AC 126 ms
54,220 KB
testcase_29 AC 129 ms
54,008 KB
testcase_30 AC 115 ms
52,932 KB
testcase_31 WA -
testcase_32 AC 124 ms
56,112 KB
testcase_33 AC 127 ms
54,244 KB
testcase_34 WA -
testcase_35 AC 128 ms
54,104 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 > 4 && n % 4 == 0) {
			System.out.println("Yes");
		} else {
			System.out.println("No");
		}
	}
}
0