結果
問題 | No.2513 Power Eraser |
ユーザー | 👑 amentorimaru |
提出日時 | 2023-06-13 23:14:13 |
言語 | Ruby (3.3.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 174 bytes |
コンパイル時間 | 603 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 22,176 KB |
最終ジャッジ日時 | 2024-09-20 16:31:55 |
合計ジャッジ時間 | 15,501 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 81 ms
12,160 KB |
testcase_01 | AC | 79 ms
12,160 KB |
testcase_02 | AC | 76 ms
12,288 KB |
testcase_03 | AC | 102 ms
12,416 KB |
testcase_04 | AC | 671 ms
12,288 KB |
testcase_05 | AC | 129 ms
12,032 KB |
testcase_06 | AC | 1,075 ms
12,416 KB |
testcase_07 | AC | 328 ms
12,160 KB |
testcase_08 | AC | 970 ms
12,544 KB |
testcase_09 | AC | 1,422 ms
12,672 KB |
testcase_10 | AC | 857 ms
12,416 KB |
testcase_11 | AC | 113 ms
12,160 KB |
testcase_12 | AC | 541 ms
12,288 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
7_evil_case_1.txt | -- | - |
7_evil_case_2.txt | -- | - |
7_evil_case_3.txt | -- | - |
7_evil_case_4.txt | -- | - |
7_evil_case_5.txt | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
N = gets.chomp.to_i A = gets.chomp.split.map(&:to_i) ans = 1 (0...N).each do |i| ((i + 1)...N).each do |j| ans = (ans * (A[i] - A[j])) % 998244353 end end puts ans