結果

問題 No.167 N^M mod 10
ユーザー MaxMellonMaxMellon
提出日時 2015-08-13 17:07:17
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 128 bytes
コンパイル時間 43 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 13,888 KB
最終ジャッジ日時 2024-07-18 09:14:59
合計ジャッジ時間 5,485 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,416 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 308 ms
13,056 KB
testcase_06 AC 88 ms
12,416 KB
testcase_07 AC 90 ms
12,544 KB
testcase_08 AC 88 ms
12,416 KB
testcase_09 AC 87 ms
12,160 KB
testcase_10 AC 88 ms
12,416 KB
testcase_11 AC 87 ms
12,288 KB
testcase_12 AC 86 ms
12,288 KB
testcase_13 AC 88 ms
12,288 KB
testcase_14 AC 87 ms
12,544 KB
testcase_15 AC 87 ms
12,544 KB
testcase_16 AC 88 ms
12,288 KB
testcase_17 AC 88 ms
12,544 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'bigdecimal'
n = gets.chomp
m = gets.chomp
n = BigDecimal(n) % 10
m = BigDecimal(m)
puts (BigDecimal(n ** m) % 10).to_i
0