#16026: C++ AC


tang891228 (tang891228)

學校 : 國立成功大學
編號 : 61119
來源 : [140.116.1.138]
最後登入時間 :
2018-09-24 00:20:31
a170. 天才的小明 -- 愷愷 | From: [111.254.96.71] | 發表日期 : 2018-11-12 01:20

#include <iostream>

using namespace std;

int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    int n, a, b;
    cin >> n;
    while (cin >> oct >> a >> b)
        cout << hex << uppercase << a + b << endl;
}
 
#24262: Re:C++ AC


mit0224 (蚯蚓貓喵喵)

學校 : 臺北市立大安高級工業職業學校
編號 : 86638
來源 : [220.135.184.132]
最後登入時間 :
2024-06-19 17:27:42
a170. 天才的小明 -- 愷愷 | From: [114.25.37.87] | 發表日期 : 2021-02-01 10:52

#include 

using namespace std;

int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    int n, a, b;
    cin >> n;
    while (cin >> oct >> a >> b)
        cout << hex << uppercase << a + b << endl;
}

測資3會TLE

 
ZeroJudge Forum