結果

問題 No.2789 hako111223’s Master Thesis
ユーザー CleverElsieCleverElsie
提出日時 2024-07-25 23:53:16
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,062 bytes
コンパイル時間 7,760 ms
コンパイル使用メモリ 333,744 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-25 23:53:25
合計ジャッジ時間 6,995 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 WA -
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 WA -
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifndef LOCAL
#include<bits/stdc++.h>
#include<atcoder/all>
#else
#include<local.h>
#endif
using namespace std;
using namespace atcoder;
using mint=modint998244353;
using mint1=modint1000000007;
using std::cout;
using std::cin;
#define fi first
#define se second
#define pb(a) push_back(a)
#define eb(a) emplace_back(a)
#define ppf() pop_front()
#define ppb() pop_back()
#define mp(f,s) make_pair(f,s)
#define A(a) begin(a),end(a)
#define int int64_t
#define uint uint64_t
#define harf int32_t
#define uharf uint32_t
#define endl '\n'
template<class f> using vc = vector<f>;
template<class f> using vv = vc<vc<f>>;
template<class f> using pq = priority_queue<f>;
template<class f> using pqg= priority_queue<f,vc<f>,greater<f>>;
using vi = vc<int>;
using vb = vc<bool>;
using pi = pair<int,int>;
using str = string;
const str yes="Yes\n", no="No\n";
constexpr int dx[]={-1,0,0,1,-1,1,-1,1};
constexpr int dy[]={0,-1,1,0,-1,-1,1,1};

signed main(){
	cin.tie(0)->sync_with_stdio(0);
	int a,b,c,d;
	cin>>a>>b>>c>>d;
	int D=31-a+1+b;
	cout<<(c<=D?1:d<=D?2:3)<<endl;
}
0