結果
問題 | No.586 ダブルブッキング |
ユーザー | Piroty19 |
提出日時 | 2019-06-26 17:26:36 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 331 bytes |
コンパイル時間 | 807 ms |
コンパイル使用メモリ | 53,988 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-25 06:24:46 |
合計ジャッジ時間 | 925 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
ソースコード
#include<iostream> using namespace std; int main() { int a, b, N; int R[1000]; int n; int sum; int count = 0; cin >> a >> b >> N; for (int i = 0; i < N; i++) { cin >> n; if (R[n] == 0) { count++; } else { R[n] = 0; } } sum = (a + b)*count; cout << sum << endl; return 0; }