結果

問題 No.337 P versus NP
ユーザー キョウチクキョウチク
提出日時 2022-06-01 13:25:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 1,924 ms
コンパイル使用メモリ 74,836 KB
実行使用メモリ 54,060 KB
最終ジャッジ日時 2024-09-21 01:28:41
合計ジャッジ時間 5,457 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
53,924 KB
testcase_01 AC 120 ms
54,004 KB
testcase_02 AC 120 ms
54,060 KB
testcase_03 AC 117 ms
53,876 KB
testcase_04 AC 119 ms
53,804 KB
testcase_05 AC 118 ms
53,704 KB
testcase_06 AC 117 ms
54,008 KB
testcase_07 AC 120 ms
53,932 KB
testcase_08 AC 122 ms
53,708 KB
testcase_09 AC 116 ms
54,060 KB
testcase_10 AC 105 ms
52,528 KB
testcase_11 AC 121 ms
54,040 KB
testcase_12 AC 120 ms
54,044 KB
testcase_13 AC 116 ms
53,888 KB
testcase_14 AC 103 ms
53,056 KB
testcase_15 AC 118 ms
53,888 KB
testcase_16 AC 103 ms
52,644 KB
testcase_17 AC 118 ms
53,948 KB
testcase_18 AC 108 ms
52,892 KB
testcase_19 AC 116 ms
53,988 KB
testcase_20 AC 121 ms
54,048 KB
testcase_21 AC 119 ms
53,844 KB
testcase_22 AC 123 ms
54,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        // Your code here!
        Scanner sc=new Scanner(System.in);
        String[] line;
        String result="";
        line=sc.nextLine().split(" ");
        int n=Integer.parseInt(line[0]);
        int p=Integer.parseInt(line[1]);
        if(n==1||p==0){
            result="=";
        }else{
            result="!=";
        }
        System.out.println(result);
    }
}
0