[BOJ] 15552번 빠른 A+B (C++)

Minju Kim·2023년 9월 28일
0
post-thumbnail
post-custom-banner

문제 링크

맞았습니다!

코드

#include <iostream>
#include <vector>
using namespace std;

int main() {
    ios_base::sync_with_stdio(false);
    cout.tie(NULL);
    cin.tie(NULL);

    int t;
    cin >> t;

    vector<int>a(t);
    vector<int>b(t);
    for (int i = 0; i < t; i++) {
        cin >> a[i];
        cin >> b[i];
    }
    for (int i = 0; i < t; i++) {
        cout << a[i] + b[i] << "\n";
    }

    
    return 0;


}

profile
이화여자대학교 컴퓨터공학과 22 / 백엔드 개발자(가 되고싶음) / Spring Boot, Flutter, Python, Java, Data structure, etc
post-custom-banner

0개의 댓글