結果

問題 No.2350 Four Seasons
ユーザー сергей зеленскийсергей зеленский
提出日時 2023-06-16 21:24:50
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 581 bytes
コンパイル時間 1,659 ms
コンパイル使用メモリ 163,968 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-24 12:55:35
合計ジャッジ時間 2,141 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
 
using namespace std;
 
typedef long long ll;
typedef long double ld;
typedef pair<ld, ld> point;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
 
const int N = (int)(20) + 7;
const int M = (int)(1e3) + 7;
const ll MOD = (ll)(1e9) + 7;
const ll INF = (ll)(1e10) + 7;
const ld eps = (ld)(1e-12);
 
#define pb push_back
#define mp make_pair
#define x first
#define y second

void precalc() {
}

void solve(int num_t) {
}

int main() {
    precalc();
	int ttt;
	cin >> ttt;
	for (int i = 0; i < ttt; ++i) {
	    solve(i);
	}//*/solve(0);
	return 0;
}
0