結果
問題 | No.586 ダブルブッキング |
ユーザー | yuasa0000 |
提出日時 | 2019-02-25 16:44:52 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 372 bytes |
コンパイル時間 | 389 ms |
コンパイル使用メモリ | 54,264 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-07 22:09:36 |
合計ジャッジ時間 | 875 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
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; j++) { if (R[i] == R[j]) { LostMoney += P + FP; } } } } std::cout << LostMoney << std::endl; return 0; }