結果

問題 No.1499 羊が、何匹だっけ
ユーザー Iván Soto
提出日時 2021-05-07 21:21:46
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 1,856 ms
コンパイル使用メモリ 193,676 KB
最終ジャッジ日時 2025-01-21 07:57:48
ジャッジサーバーID
(参考情報)
judge3 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *  author: ivanzuki   
 *  created: Fri May 07 2021
**/
#include <bits/stdc++.h>

using namespace std;

int main() {
  ios_base::sync_with_stdio(false);
  cin.tie(0);
  int tt;
  cin >> tt;
  while (tt--) {
    string a, b, c;
    int n;
    cin >> a >> b >> n >> c;
    ++n;
    cout << a << ' ' << b << ' ' << n << ' ' << c << '\n';
  }
  return 0;
}
0