結果

問題 No.337 P versus NP
ユーザー mtsu_friendsmtsu_friends
提出日時 2021-04-05 13:53:57
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 212 bytes
コンパイル時間 1,362 ms
コンパイル使用メモリ 65,904 KB
実行使用メモリ 24,024 KB
最終ジャッジ日時 2023-08-29 21:55:33
合計ジャッジ時間 3,615 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
23,972 KB
testcase_01 AC 59 ms
23,848 KB
testcase_02 AC 59 ms
21,888 KB
testcase_03 AC 59 ms
21,964 KB
testcase_04 AC 59 ms
21,988 KB
testcase_05 AC 59 ms
21,916 KB
testcase_06 AC 60 ms
24,024 KB
testcase_07 AC 59 ms
21,952 KB
testcase_08 AC 59 ms
21,960 KB
testcase_09 AC 58 ms
21,908 KB
testcase_10 AC 59 ms
21,816 KB
testcase_11 AC 59 ms
21,764 KB
testcase_12 AC 59 ms
23,840 KB
testcase_13 AC 58 ms
21,764 KB
testcase_14 AC 59 ms
21,960 KB
testcase_15 AC 60 ms
22,056 KB
testcase_16 AC 59 ms
23,852 KB
testcase_17 AC 60 ms
21,776 KB
testcase_18 AC 59 ms
21,856 KB
testcase_19 AC 59 ms
21,936 KB
testcase_20 AC 59 ms
21,936 KB
testcase_21 AC 58 ms
19,772 KB
testcase_22 AC 59 ms
21,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;
using System.Linq;
public class Yuki337 {
	static void Main(string[] _) {
		var input=Console.ReadLine().Split().Select(int.Parse).ToArray();
		Console.Write(input[0]==1||input[1]==0?"=":"!=");
	}
}
0