結果

問題 No.1499 羊が、何匹だっけ
ユーザー a
提出日時 2021-10-31 18:16:44
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 483 bytes
コンパイル時間 10,058 ms
コンパイル使用メモリ 410,764 KB
最終ジャッジ日時 2025-01-25 10:03:37
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
#include <boost/multiprecision/cpp_int.hpp>
using namespace std;
using namespace atcoder;
using namespace boost::multiprecision;

void solve() {
    int T;
    cin >> T;
    while (T--) {
        string S, T, R;
        int N;
        cin >> S >> T >> N >> R;
        N++;
        cout << S << " " << T << " " << N << " " << R << endl;
    }
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    solve();
    return 0;
}
0