結果

問題 No.337 P versus NP
ユーザー キョウチクキョウチク
提出日時 2022-06-01 13:22:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 438 bytes
コンパイル時間 2,086 ms
コンパイル使用メモリ 74,244 KB
実行使用メモリ 54,276 KB
最終ジャッジ日時 2024-09-21 01:28:35
合計ジャッジ時間 5,984 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,896 KB
testcase_01 WA -
testcase_02 AC 129 ms
54,116 KB
testcase_03 AC 140 ms
53,944 KB
testcase_04 AC 133 ms
54,004 KB
testcase_05 WA -
testcase_06 AC 128 ms
54,084 KB
testcase_07 AC 131 ms
53,948 KB
testcase_08 AC 129 ms
41,252 KB
testcase_09 AC 127 ms
41,596 KB
testcase_10 AC 128 ms
41,420 KB
testcase_11 AC 126 ms
40,976 KB
testcase_12 AC 127 ms
41,348 KB
testcase_13 WA -
testcase_14 AC 126 ms
41,188 KB
testcase_15 AC 128 ms
40,840 KB
testcase_16 AC 130 ms
41,352 KB
testcase_17 AC 134 ms
41,132 KB
testcase_18 AC 132 ms
40,952 KB
testcase_19 AC 115 ms
40,268 KB
testcase_20 AC 128 ms
41,164 KB
testcase_21 AC 133 ms
41,504 KB
testcase_22 AC 115 ms
39,808 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]);
        if(n==1){
            result="=";
        }else{
            result="!=";
        }
        System.out.println(result);
    }
}
0