結果

問題 No.1140 EXPotentiaLLL!
ユーザー simansiman
提出日時 2020-08-05 02:31:48
言語 Ruby
(3.3.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 270 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 39,796 KB
最終ジャッジ日時 2024-09-15 03:51:58
合計ジャッジ時間 17,184 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,362 ms
19,328 KB
testcase_01 AC 1,229 ms
19,328 KB
testcase_02 AC 1,379 ms
19,328 KB
testcase_03 AC 1,535 ms
39,676 KB
testcase_04 AC 1,208 ms
39,664 KB
testcase_05 AC 1,842 ms
39,676 KB
testcase_06 AC 1,760 ms
39,660 KB
testcase_07 TLE -
testcase_08 AC 137 ms
19,456 KB
testcase_09 AC 137 ms
19,328 KB
testcase_10 AC 137 ms
19,584 KB
testcase_11 AC 135 ms
19,584 KB
testcase_12 AC 135 ms
19,328 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:21: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

require 'openssl'
require 'prime'

T = gets.to_i
memo = Hash.new

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

  if memo[pv].nil?
    memo[pv] = pv.prime?
  end

  if memo[pv]
    if a.gcd(pv) == 1
      puts 1
    else
      puts 0
    end
  else
    puts -1
  end
end
0