結果
問題 | No.586 ダブルブッキング |
ユーザー | yuasa0000 |
提出日時 | 2019-02-25 16:43:34 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 376 bytes |
コンパイル時間 | 616 ms |
コンパイル使用メモリ | 56,388 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-07 22:07:37 |
合計ジャッジ時間 | 878 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | WA | - |
ソースコード
#include <iostream> int main() { int P,FP,N; std::cin >> P >> FP >> N; int* R = new int[N]; for (int i = 0; i < N; i++) { std::cin >> R[i]; } int LostMoney = 0; if (N >= 2) { for (int i = 1; i < N; i++) { for (int j = 0; j < i - 1; j++) { if (R[i] == R[j]) { LostMoney += P + FP; } } } } std::cout << LostMoney << std::endl; return 0; }