結果

問題 No.1140 EXPotentiaLLL!
ユーザー simansiman
提出日時 2020-08-05 02:26:54
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 132 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-09-15 03:47:00
合計ジャッジ時間 9,998 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,935 ms
12,416 KB
testcase_01 AC 1,280 ms
12,416 KB
testcase_02 WA -
testcase_03 AC 1,311 ms
12,800 KB
testcase_04 AC 1,023 ms
12,416 KB
testcase_05 AC 1,575 ms
12,928 KB
testcase_06 WA -
testcase_07 TLE -
testcase_08 AC 98 ms
12,416 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 99 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:11: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Main.rb:6: warning: assigned but unused variable - a
Syntax OK

ソースコード

diff #

require 'prime'

T = gets.to_i

T.times do
  a, pv = gets.split.map(&:to_i)

  if pv.prime?
    puts 1
  else
    puts -1
  end
end
0