結果

問題 No.3025  
ユーザー latte0119latte0119
提出日時 2017-03-31 23:44:37
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 618 bytes
コンパイル時間 1,235 ms
コンパイル使用メモリ 158,060 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-04-16 18:49:44
合計ジャッジ時間 1,522 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#define int long long

#define rep(i,n) for(int i=0;i<(n);i++)
#define pb push_back
#define all(v) (v).begin(),(v).end()
#define fi first
#define se second
typedef vector<int>vint;
typedef pair<int,int>pint;
typedef vector<pint>vpint;

template<typename A,typename B>inline void chmin(A &a,B b){if(a>b)a=b;}
template<typename A,typename B>inline void chmax(A &a,B b){if(a<b)a=b;}

signed main(){
    string s;int cnt=0;
    while(cin>>s)cnt++;
    
    if(cnt>20){
        assert(1==0);
    }
    if(cnt>10){
        while(true)puts("latte");
    }
    if(cnt>5)for(;;);
}
0