結果

問題 No.337 P versus NP
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-11-18 11:50:53
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 227 bytes
コンパイル時間 2,195 ms
コンパイル使用メモリ 74,420 KB
実行使用メモリ 41,688 KB
最終ジャッジ日時 2024-05-04 16:53:31
合計ジャッジ時間 6,484 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,144 KB
testcase_01 WA -
testcase_02 AC 131 ms
41,656 KB
testcase_03 AC 129 ms
41,284 KB
testcase_04 AC 131 ms
41,688 KB
testcase_05 WA -
testcase_06 AC 135 ms
41,244 KB
testcase_07 AC 128 ms
41,392 KB
testcase_08 AC 129 ms
41,520 KB
testcase_09 AC 138 ms
41,688 KB
testcase_10 AC 132 ms
41,396 KB
testcase_11 AC 129 ms
40,988 KB
testcase_12 AC 132 ms
41,304 KB
testcase_13 WA -
testcase_14 AC 131 ms
41,252 KB
testcase_15 AC 133 ms
41,512 KB
testcase_16 AC 131 ms
41,556 KB
testcase_17 AC 132 ms
41,396 KB
testcase_18 AC 130 ms
41,008 KB
testcase_19 AC 134 ms
41,340 KB
testcase_20 AC 134 ms
41,484 KB
testcase_21 AC 129 ms
41,036 KB
testcase_22 AC 134 ms
41,156 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