結果

問題 No.337 P versus NP
ユーザー fairy_lettucefairy_lettuce
提出日時 2020-06-22 03:12:13
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 265 bytes
コンパイル時間 2,311 ms
コンパイル使用メモリ 103,416 KB
実行使用メモリ 25,872 KB
最終ジャッジ日時 2023-09-16 19:05:43
合計ジャッジ時間 4,249 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
21,864 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 58 ms
24,060 KB
testcase_04 WA -
testcase_05 AC 58 ms
23,900 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 59 ms
21,840 KB
testcase_11 WA -
testcase_12 AC 58 ms
21,960 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 58 ms
22,016 KB
testcase_16 AC 58 ms
23,888 KB
testcase_17 AC 58 ms
21,840 KB
testcase_18 AC 59 ms
23,876 KB
testcase_19 AC 60 ms
19,792 KB
testcase_20 AC 58 ms
21,992 KB
testcase_21 WA -
testcase_22 AC 59 ms
23,956 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;

static class Streak
{
    static void Main()
    {
        var a = Console.ReadLine().Split(' ').Select(int.Parse).ToArray();
        if (a[0] == 0 || a[1] == 1) Console.WriteLine("=");
        else Console.WriteLine("!=");
    }
}
0