結果

問題 No.337 P versus NP
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-11-18 11:50:53
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 227 bytes
コンパイル時間 3,532 ms
コンパイル使用メモリ 73,676 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-11-26 05:58:48
合計ジャッジ時間 5,507 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
51,736 KB
testcase_01 WA -
testcase_02 AC 121 ms
53,760 KB
testcase_03 AC 120 ms
51,740 KB
testcase_04 AC 107 ms
50,840 KB
testcase_05 WA -
testcase_06 AC 122 ms
52,032 KB
testcase_07 AC 118 ms
52,188 KB
testcase_08 AC 117 ms
51,924 KB
testcase_09 AC 102 ms
50,280 KB
testcase_10 AC 113 ms
51,992 KB
testcase_11 AC 118 ms
52,160 KB
testcase_12 AC 112 ms
51,772 KB
testcase_13 WA -
testcase_14 AC 105 ms
50,760 KB
testcase_15 AC 105 ms
50,648 KB
testcase_16 AC 102 ms
50,856 KB
testcase_17 AC 105 ms
50,888 KB
testcase_18 AC 115 ms
51,768 KB
testcase_19 AC 117 ms
52,032 KB
testcase_20 AC 105 ms
50,964 KB
testcase_21 AC 113 ms
52,008 KB
testcase_22 AC 114 ms
51,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Question337
{
	public static void main(String[] str)
	{
	
		Scanner scan = new Scanner(System.in);
		
		int n = scan.nextInt();
		int p = scan.nextInt();

		System.out.println(n==1 ? "=" : "!=");
	}
}
0