結果

問題 No.1499 羊が、何匹だっけ
ユーザー Manuel1024
提出日時 2021-05-07 21:23:44
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 303 bytes
コンパイル時間 490 ms
コンパイル使用メモリ 63,744 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-15 09:10:40
合計ジャッジ時間 1,057 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other WA * 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 << " hiki" << endl;
    }
    return 0;
}
0