結果

問題 No.1499 羊が、何匹だっけ
ユーザー Manuel1024
提出日時 2021-05-07 21:24:15
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 305 bytes
コンパイル時間 510 ms
コンパイル使用メモリ 63,428 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-15 09:11:01
合計ジャッジ時間 1,009 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    int t;
    cin >> t;
    while(t--){
        string s;
        for(int i = 0; i < 2; i++) cin >> s;
        int n;
        cin >> n;
        cin >> s;
        cout << "Hitsuji ga " << n+1 << " hiki" << endl;
    }
    return 0;
}
0