結果

問題 No.1579 New Type of Nim
ユーザー ks2mks2m
提出日時 2021-07-02 22:05:29
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 370 bytes
コンパイル時間 1,692 ms
コンパイル使用メモリ 75,160 KB
実行使用メモリ 54,388 KB
最終ジャッジ日時 2024-06-29 11:35:55
合計ジャッジ時間 6,582 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
41,524 KB
testcase_01 AC 98 ms
41,108 KB
testcase_02 AC 107 ms
41,264 KB
testcase_03 AC 97 ms
41,500 KB
testcase_04 AC 97 ms
41,356 KB
testcase_05 AC 107 ms
41,232 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 108 ms
41,540 KB
testcase_10 WA -
testcase_11 AC 110 ms
41,236 KB
testcase_12 AC 106 ms
39,836 KB
testcase_13 AC 110 ms
41,328 KB
testcase_14 AC 107 ms
41,148 KB
testcase_15 AC 108 ms
41,116 KB
testcase_16 AC 107 ms
41,124 KB
testcase_17 AC 96 ms
41,312 KB
testcase_18 AC 110 ms
41,276 KB
testcase_19 AC 98 ms
41,408 KB
testcase_20 AC 99 ms
41,252 KB
testcase_21 AC 109 ms
41,288 KB
testcase_22 AC 100 ms
41,380 KB
testcase_23 AC 108 ms
41,252 KB
testcase_24 AC 102 ms
41,556 KB
testcase_25 AC 118 ms
41,408 KB
testcase_26 WA -
testcase_27 AC 107 ms
41,240 KB
testcase_28 AC 98 ms
41,236 KB
testcase_29 AC 113 ms
41,408 KB
testcase_30 AC 106 ms
41,232 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 115 ms
41,412 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();

		int x = Math.min(a, b);
		int y = Math.max(a, b);
		if (x - y <= 1 && x % 2 == 1) {
			System.out.println("Q");
		} else {
			System.out.println("P");
		}
	}
}
0