結果

問題 No.1092 modular arithmetic
ユーザー laneguelanegue
提出日時 2020-06-26 00:50:31
言語 Crystal
(1.11.2)
結果
AC  
実行時間 342 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 12,153 ms
コンパイル使用メモリ 302,144 KB
実行使用メモリ 11,860 KB
最終ジャッジ日時 2024-06-30 20:19:46
合計ジャッジ時間 17,268 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 20 ms
11,860 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 114 ms
9,856 KB
testcase_04 AC 96 ms
9,856 KB
testcase_05 AC 98 ms
9,856 KB
testcase_06 AC 72 ms
7,680 KB
testcase_07 AC 88 ms
9,856 KB
testcase_08 AC 98 ms
9,856 KB
testcase_09 AC 92 ms
9,856 KB
testcase_10 AC 77 ms
7,680 KB
testcase_11 AC 88 ms
9,856 KB
testcase_12 AC 75 ms
7,680 KB
testcase_13 AC 15 ms
7,936 KB
testcase_14 AC 17 ms
8,320 KB
testcase_15 AC 5 ms
6,940 KB
testcase_16 AC 13 ms
7,040 KB
testcase_17 AC 17 ms
8,192 KB
testcase_18 AC 120 ms
9,600 KB
testcase_19 AC 69 ms
7,680 KB
testcase_20 AC 121 ms
9,856 KB
testcase_21 AC 99 ms
9,856 KB
testcase_22 AC 116 ms
9,856 KB
testcase_23 AC 312 ms
9,856 KB
testcase_24 AC 86 ms
6,944 KB
testcase_25 AC 227 ms
8,064 KB
testcase_26 AC 264 ms
9,856 KB
testcase_27 AC 42 ms
6,940 KB
testcase_28 AC 222 ms
7,680 KB
testcase_29 AC 342 ms
9,600 KB
testcase_30 AC 224 ms
7,680 KB
testcase_31 AC 33 ms
6,944 KB
testcase_32 AC 211 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

require "big"
pr, n = read_line.split.map{|i|i.to_i64}
a = read_line.split.map{|i|i.to_i64}
s = read_line
r = a[0].to_i64
def pow_mod(a, n, m)
    r = BigInt.new(1)
    a = BigInt.new(a)
    while n > 0
        if n % 2 == 1
            r *= a
            r %= m
        end
        a **= 2
        a %= m
        n >>= 1
    end
    r
end
(n - 1).times{|i|
    case s[i]
    when '+'
        r += a[i + 1]
    when '-'
        r -= a[i + 1]
    when '*'
        r *= a[i + 1]
    when '/'
        r *= pow_mod(a[i + 1], pr - 2, pr)
    end
    r %= pr
}
puts r
0