結果

問題 No.337 P versus NP
ユーザー キョウチクキョウチク
提出日時 2022-05-14 23:42:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 402 bytes
コンパイル時間 3,267 ms
コンパイル使用メモリ 74,460 KB
実行使用メモリ 54,436 KB
最終ジャッジ日時 2024-07-23 10:52:51
合計ジャッジ時間 7,155 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,076 KB
testcase_01 AC 124 ms
53,724 KB
testcase_02 AC 112 ms
52,812 KB
testcase_03 AC 124 ms
54,016 KB
testcase_04 AC 126 ms
54,016 KB
testcase_05 AC 123 ms
53,988 KB
testcase_06 AC 113 ms
52,820 KB
testcase_07 AC 126 ms
53,976 KB
testcase_08 AC 129 ms
54,108 KB
testcase_09 AC 126 ms
54,024 KB
testcase_10 AC 126 ms
54,032 KB
testcase_11 AC 130 ms
54,328 KB
testcase_12 AC 129 ms
53,976 KB
testcase_13 AC 129 ms
54,180 KB
testcase_14 AC 127 ms
53,872 KB
testcase_15 AC 126 ms
53,996 KB
testcase_16 AC 127 ms
53,988 KB
testcase_17 AC 127 ms
53,920 KB
testcase_18 AC 126 ms
54,436 KB
testcase_19 AC 127 ms
54,168 KB
testcase_20 AC 127 ms
54,068 KB
testcase_21 AC 112 ms
52,844 KB
testcase_22 AC 128 ms
54,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Test10 {
  public static void main(String[] args){
    Scanner sc=new Scanner(System.in);
    String[] line;
    line=sc.nextLine().split(" ");
    int n=Integer.parseInt(line[0]);
    int p=Integer.parseInt(line[1]);
    if(n==1){
      System.out.println("=");
    }else if(p==0){
      System.out.println("=");
    }else{
      System.out.println("!=");
    }
  }
}
0