結果

問題 No.337 P versus NP
ユーザー ToniTakekawaToniTakekawa
提出日時 2016-02-07 19:24:11
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 848 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 6,726 ms
コンパイル使用メモリ 256,632 KB
実行使用メモリ 65,196 KB
最終ジャッジ日時 2024-06-29 12:46:29
合計ジャッジ時間 26,690 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 808 ms
62,992 KB
testcase_01 AC 806 ms
63,088 KB
testcase_02 AC 812 ms
63,080 KB
testcase_03 AC 802 ms
62,964 KB
testcase_04 AC 793 ms
63,184 KB
testcase_05 AC 800 ms
63,188 KB
testcase_06 AC 848 ms
63,000 KB
testcase_07 AC 803 ms
62,940 KB
testcase_08 AC 814 ms
63,172 KB
testcase_09 AC 803 ms
63,208 KB
testcase_10 AC 791 ms
63,268 KB
testcase_11 AC 798 ms
62,960 KB
testcase_12 AC 810 ms
63,104 KB
testcase_13 AC 823 ms
63,268 KB
testcase_14 AC 787 ms
63,064 KB
testcase_15 AC 796 ms
63,140 KB
testcase_16 AC 793 ms
63,308 KB
testcase_17 AC 809 ms
63,132 KB
testcase_18 AC 806 ms
65,196 KB
testcase_19 AC 800 ms
63,324 KB
testcase_20 AC 841 ms
63,280 KB
testcase_21 AC 805 ms
63,104 KB
testcase_22 AC 789 ms
62,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object LazySieve extends App {
  val sc = new Scanner(System.in)
  val N, P = sc.nextInt
  val NP = N * P
  if( P == NP ){
    println("=")
  }
  else{
    println("!=")
  }
}
0