結果

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

テストケース

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

ソースコード

diff #

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