結果

問題 No.337 P versus NP
ユーザー keymoonkeymoon
提出日時 2019-02-23 01:20:05
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 456 bytes
コンパイル時間 3,328 ms
コンパイル使用メモリ 98,648 KB
実行使用メモリ 23,832 KB
最終ジャッジ日時 2023-08-17 13:55:57
合計ジャッジ時間 5,518 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
23,812 KB
testcase_01 AC 59 ms
21,700 KB
testcase_02 AC 58 ms
21,788 KB
testcase_03 AC 57 ms
21,796 KB
testcase_04 AC 58 ms
21,828 KB
testcase_05 AC 58 ms
21,756 KB
testcase_06 AC 59 ms
19,732 KB
testcase_07 AC 58 ms
21,744 KB
testcase_08 AC 59 ms
23,832 KB
testcase_09 AC 59 ms
21,764 KB
testcase_10 AC 58 ms
21,756 KB
testcase_11 AC 59 ms
21,744 KB
testcase_12 AC 59 ms
21,872 KB
testcase_13 AC 57 ms
21,716 KB
testcase_14 AC 59 ms
21,844 KB
testcase_15 AC 58 ms
23,808 KB
testcase_16 AC 59 ms
21,796 KB
testcase_17 AC 58 ms
21,740 KB
testcase_18 AC 58 ms
21,788 KB
testcase_19 AC 57 ms
21,976 KB
testcase_20 AC 59 ms
21,668 KB
testcase_21 AC 58 ms
21,716 KB
testcase_22 AC 59 ms
23,680 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.IO;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
using System.Numerics;
using System.Diagnostics;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using static System.Math;

class P
{
    static void Main()
    {
        var np = Console.ReadLine().Split().Select(int.Parse).ToList();
        Console.WriteLine(np[0] * np[1] == np[1] ? "=" : "!=");
    }
}
0