結果

問題 No.337 P versus NP
ユーザー mban259mban259
提出日時 2016-05-10 23:18:48
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 247 bytes
コンパイル時間 952 ms
コンパイル使用メモリ 107,344 KB
実行使用メモリ 26,256 KB
最終ジャッジ日時 2024-04-15 15:08:08
合計ジャッジ時間 2,191 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
25,940 KB
testcase_01 WA -
testcase_02 AC 26 ms
26,072 KB
testcase_03 AC 25 ms
24,156 KB
testcase_04 AC 26 ms
23,860 KB
testcase_05 WA -
testcase_06 AC 25 ms
23,980 KB
testcase_07 AC 26 ms
25,812 KB
testcase_08 AC 25 ms
23,900 KB
testcase_09 AC 26 ms
23,772 KB
testcase_10 AC 26 ms
25,804 KB
testcase_11 AC 26 ms
23,960 KB
testcase_12 AC 26 ms
25,936 KB
testcase_13 WA -
testcase_14 AC 26 ms
26,124 KB
testcase_15 AC 26 ms
24,156 KB
testcase_16 AC 26 ms
25,968 KB
testcase_17 AC 26 ms
25,992 KB
testcase_18 AC 26 ms
26,256 KB
testcase_19 AC 26 ms
25,992 KB
testcase_20 AC 26 ms
24,152 KB
testcase_21 AC 25 ms
23,776 KB
testcase_22 AC 26 ms
23,900 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

class A {
   static void Main() {
        int N = int.Parse(Console.ReadLine().Split(' ')[0]);
        if (N == 1) {
            Console.WriteLine("=");
        }
        else {
            Console.WriteLine("!=");
        }
    }
}
0