結果

問題 No.1579 New Type of Nim
ユーザー 👑 kakel-sankakel-san
提出日時 2021-07-02 21:53:43
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 1,884 ms
コンパイル使用メモリ 65,188 KB
実行使用メモリ 23,992 KB
最終ジャッジ日時 2023-09-30 11:13:34
合計ジャッジ時間 5,283 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
21,748 KB
testcase_01 AC 60 ms
21,704 KB
testcase_02 AC 61 ms
19,856 KB
testcase_03 AC 61 ms
21,776 KB
testcase_04 AC 60 ms
21,760 KB
testcase_05 AC 61 ms
23,756 KB
testcase_06 AC 61 ms
21,768 KB
testcase_07 AC 60 ms
23,752 KB
testcase_08 AC 61 ms
19,860 KB
testcase_09 AC 61 ms
23,816 KB
testcase_10 AC 61 ms
21,760 KB
testcase_11 AC 61 ms
23,820 KB
testcase_12 AC 61 ms
21,836 KB
testcase_13 AC 60 ms
21,892 KB
testcase_14 AC 60 ms
21,836 KB
testcase_15 AC 60 ms
19,740 KB
testcase_16 AC 61 ms
21,776 KB
testcase_17 AC 61 ms
21,688 KB
testcase_18 AC 60 ms
21,788 KB
testcase_19 AC 61 ms
21,824 KB
testcase_20 AC 61 ms
21,680 KB
testcase_21 AC 60 ms
21,720 KB
testcase_22 AC 60 ms
21,828 KB
testcase_23 AC 61 ms
23,928 KB
testcase_24 AC 62 ms
21,808 KB
testcase_25 AC 61 ms
21,740 KB
testcase_26 AC 62 ms
21,844 KB
testcase_27 AC 62 ms
23,752 KB
testcase_28 AC 62 ms
23,724 KB
testcase_29 AC 60 ms
23,744 KB
testcase_30 AC 62 ms
23,992 KB
testcase_31 AC 61 ms
23,692 KB
testcase_32 AC 61 ms
23,816 KB
testcase_33 AC 61 ms
21,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;
using System.Collections.Generic;
using static System.Console;
using System.Linq;

class yuki302
{
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static void Main()
    {
        var cin = NList;
        Array.Sort(cin);

        WriteLine((cin[1] % 2 == 0 && cin[1] - cin[0] == 1) || (cin[1] % 2 == 1 && cin[1] == cin[0]) ? "Q" : "P");
    }
}
0