結果

問題 No.2525 Great Move
ユーザー bluemeganebluemegane
提出日時 2023-11-03 22:39:07
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 507 bytes
コンパイル時間 8,501 ms
コンパイル使用メモリ 164,680 KB
実行使用メモリ 181,192 KB
最終ジャッジ日時 2024-09-25 21:02:29
合計ジャッジ時間 10,972 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
30,956 KB
testcase_01 AC 52 ms
30,976 KB
testcase_02 AC 53 ms
30,848 KB
testcase_03 AC 52 ms
30,720 KB
testcase_04 AC 53 ms
30,464 KB
testcase_05 AC 49 ms
26,624 KB
testcase_06 AC 48 ms
27,008 KB
testcase_07 AC 49 ms
26,592 KB
testcase_08 AC 48 ms
27,008 KB
testcase_09 AC 48 ms
27,008 KB
testcase_10 AC 50 ms
29,048 KB
testcase_11 AC 49 ms
27,520 KB
testcase_12 AC 49 ms
28,160 KB
testcase_13 AC 50 ms
28,928 KB
testcase_14 AC 50 ms
29,440 KB
testcase_15 AC 51 ms
29,056 KB
testcase_16 AC 49 ms
28,416 KB
testcase_17 AC 48 ms
27,136 KB
testcase_18 AC 50 ms
27,500 KB
testcase_19 AC 49 ms
27,520 KB
testcase_20 AC 48 ms
27,008 KB
testcase_21 AC 47 ms
26,988 KB
testcase_22 AC 48 ms
26,880 KB
testcase_23 AC 48 ms
26,880 KB
testcase_24 AC 47 ms
26,624 KB
testcase_25 AC 48 ms
26,496 KB
testcase_26 AC 47 ms
26,624 KB
testcase_27 AC 47 ms
26,416 KB
testcase_28 AC 47 ms
181,192 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (96 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using static System.Math;
using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var h = line[0];
        var s = line[1];
        getAns(h, s);
    }
    static void getAns(string h, string s)
    {
        var hL = h.Length;
        var sL = s.Length;
        var hh = h[hL - 1] - '0';
        var ss = s[sL - 1] - '0';
        var w = Abs(hh - ss);
        Console.WriteLine(w % 2 == 0 ? "Possible" : "Impossible");
    }
}
0