結果

問題 No.2830 Don't Stop the Game
ユーザー kotatsugamekotatsugame
提出日時 2024-08-02 21:53:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 891 bytes
コンパイル時間 770 ms
コンパイル使用メモリ 85,944 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-08-02 21:53:10
合計ジャッジ時間 2,928 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<iostream>
#include<vector>
#include<cassert>
#include<random>
using namespace std;
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cout<<240<<endl;
	for(int i=1;i<=30;i++)cout<<"1\n"<<i<<endl;
	vector<int>t;
	for(int k=0;k<30;k++)if(998244352>>k&1)t.push_back(k);
	assert(t.size()==6);
	random_device rng;
	for(int i=2;i<=9;i++)cout<<"5\n"<<i<<" "<<rng()%998244352+1<<endl;
	cout<<"3\n2 3\n";
	cout<<"3\n4 5\n";
	cout<<"3\n2 4\n";
	cout<<"3\n3 5\n";
	cout<<"3\n6 7\n";
	cout<<"3\n8 9\n";
	cout<<"3\n6 8\n";
	cout<<"3\n7 9\n";
	cout<<"3\n2 6\n";
	cout<<"3\n3 7\n";
	cout<<"3\n4 8\n";
	cout<<"3\n5 9\n";
	for(int i=0;i<t.size();i++)
	{
		for(int k=0;k<t[i];k++)cout<<"3\n"<<i+2<<" "<<i+2<<endl;
	}
	cout<<"3\n2 3\n";
	cout<<"3\n2 4\n";
	cout<<"3\n2 5\n";
	cout<<"3\n2 6\n";
	cout<<"3\n2 7\n";
	cout<<"5\n2 998244352\n";
	for(int i=3;i<=30;i++)cout<<"3\n2 "<<i<<endl;
}
0