結果
問題 | No.16 累乗の加算 |
ユーザー | gemmaro |
提出日時 | 2020-04-28 10:38:34 |
言語 | Ruby (3.3.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 280 bytes |
コンパイル時間 | 124 ms |
コンパイル使用メモリ | 7,296 KB |
実行使用メモリ | 820,992 KB |
最終ジャッジ日時 | 2024-05-03 07:32:07 |
合計ジャッジ時間 | 2,570 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 90 ms
12,160 KB |
testcase_01 | AC | 92 ms
12,160 KB |
testcase_02 | MLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
# frozen_string_literal: true LAW = 10**6 + 3 X, N = gets.chomp.split.map(&:to_i) AS = gets.chomp.split.map(&:to_i) MAX_A = AS.max EXPONENTS = MAX_A.times.each_with_object([1]) do |_i, a| a << a.last * X end RESULT = AS.map { |i| EXPONENTS[i] % LAW }.sum % LAW puts RESULT