結果
| 問題 | No.1140 EXPotentiaLLL! |
| コンテスト | |
| ユーザー |
iiljj
|
| 提出日時 | 2020-07-31 23:09:53 |
| 言語 | Ruby (3.4.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 159 bytes |
| コンパイル時間 | 486 ms |
| コンパイル使用メモリ | 7,552 KB |
| 実行使用メモリ | 33,728 KB |
| 最終ジャッジ日時 | 2024-07-06 21:03:01 |
| 合計ジャッジ時間 | 7,640 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | -- * 1 |
| other | TLE * 1 -- * 11 |
コンパイルメッセージ
Main.rb:8: warning: ambiguous first argument; put parentheses or a space even after `-' operator Syntax OK
ソースコード
#!ruby -ropenssl
t = gets.to_i
t.times {
a, pp = gets.split.map &:to_i
if OpenSSL::BN.new(pp).prime? then
p a-1
else
p -1
end
}
iiljj