結果

問題 No.1579 New Type of Nim
ユーザー ks2mks2m
提出日時 2021-07-02 21:56:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 334 bytes
コンパイル時間 2,130 ms
コンパイル使用メモリ 74,060 KB
実行使用メモリ 41,364 KB
最終ジャッジ日時 2024-06-29 11:28:09
合計ジャッジ時間 7,895 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,176 KB
testcase_01 AC 129 ms
41,048 KB
testcase_02 AC 120 ms
40,100 KB
testcase_03 AC 128 ms
40,920 KB
testcase_04 AC 132 ms
41,224 KB
testcase_05 AC 130 ms
40,828 KB
testcase_06 AC 131 ms
41,108 KB
testcase_07 AC 130 ms
41,296 KB
testcase_08 AC 130 ms
41,064 KB
testcase_09 AC 134 ms
41,236 KB
testcase_10 AC 130 ms
41,200 KB
testcase_11 AC 132 ms
41,236 KB
testcase_12 AC 132 ms
41,192 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 130 ms
41,064 KB
testcase_16 WA -
testcase_17 AC 132 ms
41,300 KB
testcase_18 AC 130 ms
41,208 KB
testcase_19 AC 132 ms
41,224 KB
testcase_20 AC 132 ms
41,044 KB
testcase_21 AC 132 ms
41,096 KB
testcase_22 AC 130 ms
41,028 KB
testcase_23 AC 133 ms
41,104 KB
testcase_24 AC 131 ms
40,924 KB
testcase_25 AC 121 ms
40,244 KB
testcase_26 AC 134 ms
41,172 KB
testcase_27 WA -
testcase_28 AC 134 ms
41,104 KB
testcase_29 AC 131 ms
41,208 KB
testcase_30 WA -
testcase_31 AC 132 ms
41,236 KB
testcase_32 AC 133 ms
41,300 KB
testcase_33 AC 131 ms
41,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

		if (Math.abs(a - b) <= 1 && (a + b) % 4 == 3) {
			System.out.println("Q");
		} else {
			System.out.println("P");
		}
	}
}
0