結果

問題 No.337 P versus NP
ユーザー Crowea
提出日時 2019-01-24 16:40:10
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 351 bytes
コンパイル時間 866 ms
コンパイル使用メモリ 107,136 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2024-09-16 04:38:45
合計ジャッジ時間 2,295 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 12 WA * 11
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;

class Program
{
    static void Main(string[] args)
    {
        var input = Console.ReadLine().Split(' ').Select(x => int.Parse(x)).ToList();
        var integer = new {  N = input[0]
                           , P = input[1] };
        Console.WriteLine((integer.N == integer.N * integer.P) ? "=" : "!=");
    }
}
0