結果

問題 No.249 N言っちゃダメゲーム (2)
ユーザー syoken_desukasyoken_desuka
提出日時 2015-07-24 22:32:41
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 70 ms / 1,000 ms
コード長 880 bytes
コンパイル時間 654 ms
コンパイル使用メモリ 87,068 KB
実行使用メモリ 4,376 KB
最終ジャッジ日時 2023-09-22 22:29:32
合計ジャッジ時間 1,511 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
4,376 KB
testcase_01 AC 70 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <array>
#include <sstream>
#include <cstdio>
#include <functional>
#include <cstdlib>
#include <cctype>
#include <ostream>
#include<complex>
#include <cmath>
#include <iostream>
#include <stack>
#include <queue>
#include <list>
#include <map>
#include <numeric>
#include <set>
#include <sstream>
#include <bitset>
#include <iomanip>
#include <string>
#include <vector>
#include <string>

using namespace std;
#define OB (bitset<32>)
#define REP(i,a,n) for(int i=(a); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define ALLOF(c) begin(), (c),end()

typedef long long ll;

#define PI acos(-1)
#define EPS 1e-11
#define MOD 1000000007

int main()
{
    string s1,s2;
    rep(i,1000)
    {
           cin >> s1 >> s2;
    }
    //必ず必勝法の手をとれるので、適切に選べば1000/2回勝てる
    cout << 500 << endl;
    return 0;
}



0