結果

問題 No.167 N^M mod 10
ユーザー Lycoris_iLycoris_i
提出日時 2015-09-13 02:09:12
言語 Ruby
(3.3.0)
結果
AC  
実行時間 93 ms / 1,000 ms
コード長 667 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-09-22 01:22:07
合計ジャッジ時間 4,510 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

n = gets.to_i % 10
m = gets.to_i
if m == 0
  puts 1
  exit
end
case n
when 0, 1, 5, 6
  puts n
when 2
  case m % 4
  when 1
    puts 2
  when 2
    puts 4
  when 3
    puts 8
  when 0
    puts 6
  end
when 3
  case m % 4
  when 1
    puts 3
  when 2
    puts 9
  when 3
    puts 7
  when 0
    puts 1
  end
when 4
  case m % 4
  when 1, 3
    puts 4
  when 0, 2
    puts 6
  end
when 7
  case m % 4
  when 1
    puts 7
  when 2
    puts 9
  when 3
    puts 3
  when 0
    puts 1
  end
when 8
  case m % 4
  when 1
    puts 8
  when 2
    puts 4
  when 3
    puts 2
  when 0
    puts 6
  end
when 9
  case m % 4
  when 1, 3
    puts 9
  when 0, 2
    puts 1
  end
end
0