【PAT】B1032 挖掘機技術哪家強(20 分)
#include<cstdio> const int maxx= 100010; int school[maxx]={0}; int main() { int n,schid,schscore; scanf("%d",&n); for(int i=0;i<n;i++)//獲取學校分數存入數組 { scanf("%d%d",&schid,&schscore); school[schid]+=schscore; } //找出最高分打印 int k=0; for(int i=0;i<=n;i++) { if(school[k]<school[i]) k=i; } printf("%d %d\n",k,school[k]); return 0; }
【PAT】B1032 挖掘機技術哪家強(20 分)
相關推薦
【PAT】B1032 挖掘機技術哪家強(20 分)
printf 數組 hid () can scanf 獲取 tdi 技術 #include<cstdio> const int maxx= 100010; int school[maxx]={0}; int main() { int n,schid,sc
PAT_B_1032 挖掘機技術哪家強 (20 分)【最後一個測試點超時】
為了用事實說明挖掘機技術到底哪家強,PAT 組織了一場挖掘機技能大賽。現請你根據比賽結果統計出技術最強的那個學校。 輸入格式: 輸入在第 1 行給出不超過 105 的正整數 N,即參賽人數。隨後 N 行,每行給出一位參賽者的資訊和成績,包括其所代表的學校的編號(從 1 開始連續編號)、
PAT-乙-1032 1032 挖掘機技術哪家強 (20 分)
程式碼 #include <iostream> #include <map> using namespace std; int main() { int n; cin>>n; map<int, int&g
PAT (Basic Level) Practice (中文) 1032 挖掘機技術哪家強 (20 分)(C++)
1032 挖掘機技術哪家強 (20 分) 為了用事實說明挖掘機技術到底哪家強,PAT 組織了一場挖掘機技能大賽。現請你根據比賽結果統計出技術最強的那個學校。 輸入格式: 輸入在第 1 行給出不超過 10 5 的正整數 N,即參賽人數。隨後 N 行,每行給出一位參賽者的
1032 挖掘機技術哪家強 (20 分)
1032 挖掘機技術哪家強 (20 分) 為了用事實說明挖掘機技術到底哪家強,PAT 組織了一場挖掘機技能大賽。現請你根據比賽結果統計出技術最強的那個學校。 輸入格式: 輸入在第 1 行給出不超過 105 的正整數 N,即參賽人數。隨後 N 行,每行給出一位參賽者
1032 挖掘機技術哪家強 (20 分)
為了用事實說明挖掘機技術到底哪家強,PAT 組織了一場挖掘機技能大賽。現請你根據比賽結果統計出技術最強的那個學校。 輸入格式: 輸入在第 1 行給出不超過 105 的正整數 N,即參賽人
1032 挖掘機技術哪家強 (20 分)(C語言)
1032 挖掘機技術哪家強 (20 分) 為了用事實說明挖掘機技術到底哪家強,PAT 組織了一場挖掘機技能大賽。現請你根據比賽結果統計出技術最強的那個學校。 輸入格式: 輸入在第 1 行給出不超過 105 的正整數 N,即參賽人數。隨後 N 行,每行給出一位參賽者
PAT乙級1032. 挖掘機技術哪家強(C語言)
/* 將陣列下標作為學校編號,累加成績 */ #include <stdio.h> int main() { int N; //參賽人數 scanf("%d", &N); int player[N
【PAT】B1023 組個最小數(20 分)
最小數 [1] ace pac 存儲位置 bool algorithm tdi include #include<stdio.h> #include<algorithm> using namespace std; struct number{
【PAT】1023 組個最小數 (20 分)
1023 組個最小數 (20 分) 給定數字 0-9 各若干個。你可以以任意順序排列這些數字,但必須全部使用。目標是使得最後得到的數儘可能小(注意 0 不能做首位)。例如:給定兩個 0,兩個 1,三個 5,一個 8,我們得到的最小的數就是 10015558。 現給定數字,
【PAT】B1005 繼續(3n+1)猜想(25 分)
tdi can scanf code ret return amp emp ++ #include<stdio.h> #include<algorithm> using namespace std; int Table[1000]={0}; bool
【PAT】B1011 A+B和C(15 分)
can scan ++ i++ clu return ret cas n) #include<stdio.h> int main() { int n; scanf("%d",&n); for(int i=1;i<=n;i+
【PAT】B1010 一元多項式求導(25 分)
mes sin ack turn sca for -- esp push #include<cstdio> #include<vector> using namespace std; struct duo{ int xishu,zhishu;
【笨方法學PAT】1140 Look-and-say Sequence (20 分)
一、題目 Look-and-say sequence is a sequence of integers as the following: D, D1, D111, D113, D11231, D112213111, ... where D is in [0,
【PAT】1011 A+B 和 C (15 分)
1011 A+B 和 C (15 分) 給定區間 [−231,231] 內的 3 個整數 A、B 和 C,請判斷 A+B 是否大於 C。 輸入格式: 輸入第 1 行給出正整數 T&n
【PAT】1010 一元多項式求導 (25 分)
1010 一元多項式求導 (25 分) 設計函式求一元多項式的導數。(注:xn(n為整數)的一階導數為nxn−1。) 輸入格式: 以指數遞降方式輸入多項式非零項係數和指數(絕對值均為不超過 1000 的整數)。數字間以空格分隔。 輸出格式: 以
PAT B1032 挖掘機技術哪家強
本地編譯環境 系統:win7 64位; C/C++環境:Clion2018,編譯器cygwin。 Java環境:IDEA2018,編譯器jdk-8u172。 Python環境:pycharm,編譯器An
PAT乙1032. 挖掘機技術哪家強(20)
題目在這裡 1032. 挖掘機技術哪家強(20) 時間限制 200 ms 記憶體限制 65536 kB 程式碼長度限制
(PAT乙級)1032 挖掘機技術哪家強(C語言實現)
總結: 1、求對應相同編號的分數總和時,一開始我是想分開用陣列儲存編號和對應的分數和,這樣操作既複雜然後又沒通過測試,看了大佬的想法,直接用編號作為陣列的位號,去儲存對應的分數和,會簡單很多。 2、特別要注意陣列的上下界和迴圈的次數,不然會造成結果錯誤。
PAT乙級1032 挖掘機技術哪家強(20)
----------------------------------------------------------------------------------------------------------------用C++完成--------------------