結果

問題 No.1499 羊が、何匹だっけ
ユーザー Subaru314
提出日時 2022-01-24 19:28:40
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 564 bytes
コンパイル時間 2,917 ms
コンパイル使用メモリ 287,728 KB
最終ジャッジ日時 2025-01-27 15:10:06
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include"bits/stdc++.h"
#include<boost/multi_array.hpp>
#include<boost/optional.hpp>
#include<boost/range/irange.hpp>
#include<boost/range/algorithm.hpp>
#include<boost/range/adaptors.hpp>
using namespace std;

namespace adaptor = boost::adaptors;

void Main(){
  int n;
  cin >> n;
  for(int i=0; i<n; i++){
    string a,b,c;
    int m;
    cin >> a >> b >> m >> c;
    cout << "Hitsuji ga " << m+1 << " hiki" << endl;
  }
}

int main(){
	std::cin.tie(nullptr);
	std::ios_base::sync_with_stdio(false);
	std::cout << std::fixed << std::setprecision(15);
	Main();
}
0