結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
40,968 KB
testcase_01 AC 128 ms
41,328 KB
testcase_02 AC 129 ms
41,096 KB
testcase_03 AC 128 ms
41,156 KB
testcase_04 AC 127 ms
41,248 KB
testcase_05 AC 127 ms
41,192 KB
testcase_06 AC 125 ms
41,116 KB
testcase_07 AC 127 ms
41,108 KB
testcase_08 AC 129 ms
41,092 KB
testcase_09 AC 130 ms
41,376 KB
testcase_10 AC 125 ms
41,280 KB
testcase_11 AC 128 ms
41,328 KB
testcase_12 AC 129 ms
41,168 KB
testcase_13 AC 126 ms
41,068 KB
testcase_14 AC 129 ms
41,264 KB
testcase_15 WA -
testcase_16 AC 113 ms
40,060 KB
testcase_17 WA -
testcase_18 AC 130 ms
41,296 KB
testcase_19 WA -
testcase_20 AC 133 ms
41,148 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 129 ms
41,236 KB
testcase_24 AC 129 ms
41,308 KB
testcase_25 AC 120 ms
40,188 KB
testcase_26 AC 129 ms
41,176 KB
testcase_27 AC 128 ms
41,108 KB
testcase_28 WA -
testcase_29 AC 127 ms
41,120 KB
testcase_30 AC 130 ms
41,352 KB
testcase_31 AC 128 ms
41,096 KB
testcase_32 AC 129 ms
41,324 KB
testcase_33 AC 132 ms
41,116 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) {
			System.out.println("Q");
		} else {
			System.out.println("P");
		}
	}
}
0