結果

問題 No.337 P versus NP
ユーザー mtsu_friendsmtsu_friends
提出日時 2021-04-05 13:51:36
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 1,801 ms
コンパイル使用メモリ 67,688 KB
実行使用メモリ 24,008 KB
最終ジャッジ日時 2023-08-29 21:52:21
合計ジャッジ時間 4,227 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
23,932 KB
testcase_01 AC 58 ms
21,920 KB
testcase_02 AC 59 ms
23,868 KB
testcase_03 AC 58 ms
21,820 KB
testcase_04 AC 59 ms
21,880 KB
testcase_05 AC 59 ms
23,944 KB
testcase_06 AC 58 ms
23,884 KB
testcase_07 AC 57 ms
21,964 KB
testcase_08 AC 58 ms
21,912 KB
testcase_09 AC 59 ms
23,904 KB
testcase_10 AC 55 ms
23,912 KB
testcase_11 AC 57 ms
21,844 KB
testcase_12 AC 56 ms
21,876 KB
testcase_13 AC 55 ms
19,896 KB
testcase_14 AC 57 ms
21,876 KB
testcase_15 AC 54 ms
21,792 KB
testcase_16 AC 56 ms
21,916 KB
testcase_17 AC 56 ms
21,936 KB
testcase_18 AC 56 ms
21,868 KB
testcase_19 AC 54 ms
23,820 KB
testcase_20 AC 57 ms
23,876 KB
testcase_21 AC 60 ms
21,952 KB
testcase_22 AC 59 ms
24,008 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