結果
問題 | No.586 ダブルブッキング |
ユーザー | yk16 |
提出日時 | 2017-11-04 02:17:38 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 33 ms / 2,000 ms |
コード長 | 427 bytes |
コンパイル時間 | 136 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-05-02 21:10:18 |
合計ジャッジ時間 | 879 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,752 KB |
testcase_01 | AC | 31 ms
10,752 KB |
testcase_02 | AC | 31 ms
10,752 KB |
testcase_03 | AC | 32 ms
10,752 KB |
testcase_04 | AC | 33 ms
10,624 KB |
testcase_05 | AC | 31 ms
10,752 KB |
testcase_06 | AC | 30 ms
10,752 KB |
testcase_07 | AC | 30 ms
10,752 KB |
ソースコード
from sys import stdin def readLine_int_list():return list(map(int, stdin.readline().split())) def readAll_int(): return list(map(int, stdin)) def main(): memo = {} p1 = int(input()) p2 = int(input()) n = int(input()) r = readAll_int() c = 0 for i in r: if i in memo: c += 1 memo[i] = 1 print(c*(p1+p2)) if __name__ == "__main__": main()