×
解除綁定,重新設定系統帳號的密碼
您的系統帳號 ID:
您的系統帳號:
您的帳號暱稱:
設定新密碼:
設定新密碼:
×
請輸入要加入的「課程代碼」
請向開設課程的使用者索取「課程代碼」
分類題庫
解題動態
排行榜
討論區
競賽區
登入
註冊
發表新討論
#35350:
11s505@ms.mingdao.edu.tw
(1238葉柏辰 Lazp)
學校 : 不指定學校
編號 : 199073
×
傳送站內訊息
傳給:
主題:
內容:
來源 : [36.234.122.218]
最後登入時間 :
2024-01-05 00:49:41
j605.
1. 程式考試
--
2023年1月
APCS
| From: [36.234.121.196] | 發表日期 : 2023-05-28 12:36
```
#include <iostream>
#define endl '\n'
using namespace std;
struct Score {
int time, score;
};
int main() {
int k, fuck_times = 0;
cin >> k;
Score temp, Hightest = {0, -2};
for (int i = 0; i < k; i++) {
cin >> temp.time >> temp.score;
if (temp.score == -1)
fuck_times++;
if (temp.score > Hightest.score)
Hightest = temp;
}
cout << max(0, (Hightest.score - k - fuck_times * 2)) << " " << Hightest.time;
return 0;
}
```
ZeroJudge Forum