結果

問題 No.1092 modular arithmetic
ユーザー laneguelanegue
提出日時 2020-09-07 23:14:28
言語 Crystal
(1.11.2)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 520 bytes
コンパイル時間 11,122 ms
コンパイル使用メモリ 295,204 KB
実行使用メモリ 9,472 KB
最終ジャッジ日時 2024-06-30 21:12:46
合計ジャッジ時間 13,577 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 18 ms
9,472 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 31 ms
8,320 KB
testcase_04 AC 26 ms
7,552 KB
testcase_05 AC 27 ms
7,552 KB
testcase_06 AC 20 ms
6,940 KB
testcase_07 AC 25 ms
7,552 KB
testcase_08 AC 29 ms
8,064 KB
testcase_09 AC 26 ms
7,424 KB
testcase_10 AC 22 ms
6,940 KB
testcase_11 AC 25 ms
7,424 KB
testcase_12 AC 20 ms
6,940 KB
testcase_13 AC 10 ms
6,944 KB
testcase_14 AC 12 ms
6,944 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 9 ms
6,944 KB
testcase_17 AC 12 ms
6,944 KB
testcase_18 AC 32 ms
8,192 KB
testcase_19 AC 20 ms
6,940 KB
testcase_20 AC 32 ms
8,320 KB
testcase_21 AC 25 ms
7,552 KB
testcase_22 AC 30 ms
8,064 KB
testcase_23 AC 57 ms
7,424 KB
testcase_24 AC 18 ms
6,944 KB
testcase_25 AC 44 ms
6,944 KB
testcase_26 AC 53 ms
7,424 KB
testcase_27 AC 9 ms
6,944 KB
testcase_28 AC 42 ms
6,940 KB
testcase_29 AC 65 ms
8,064 KB
testcase_30 AC 44 ms
6,940 KB
testcase_31 AC 7 ms
6,940 KB
testcase_32 AC 39 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

pr, n = read_line.split.map{|i|i.to_i}
A = read_line.split.map{|i|i.to_i}
S = read_line
r = A[0].to_i64
def pow_mod(a, n, m)
    r = 1_i64
    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].to_i64, pr - 2, pr)
    end
    r %= pr
}
puts r
0