結果

問題 No.5016 Worst Mayor
ユーザー Shawn stayCShawn stayC
提出日時 2023-04-29 14:58:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 535 bytes
コンパイル時間 2,030 ms
コンパイル使用メモリ 201,220 KB
実行使用メモリ 24,408 KB
スコア 550,000,000
平均クエリ数 500.00
最終ジャッジ日時 2023-04-29 14:58:44
合計ジャッジ時間 9,005 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
23,856 KB
testcase_01 AC 78 ms
23,436 KB
testcase_02 AC 74 ms
23,664 KB
testcase_03 AC 77 ms
24,276 KB
testcase_04 AC 75 ms
24,072 KB
testcase_05 AC 76 ms
23,664 KB
testcase_06 AC 77 ms
23,532 KB
testcase_07 AC 76 ms
23,400 KB
testcase_08 AC 76 ms
24,372 KB
testcase_09 AC 75 ms
24,060 KB
testcase_10 AC 84 ms
24,312 KB
testcase_11 AC 76 ms
23,556 KB
testcase_12 AC 74 ms
24,060 KB
testcase_13 AC 75 ms
23,544 KB
testcase_14 AC 78 ms
24,024 KB
testcase_15 AC 81 ms
24,036 KB
testcase_16 AC 75 ms
24,048 KB
testcase_17 AC 77 ms
23,424 KB
testcase_18 AC 78 ms
24,036 KB
testcase_19 AC 74 ms
23,664 KB
testcase_20 AC 75 ms
24,360 KB
testcase_21 AC 86 ms
23,544 KB
testcase_22 AC 77 ms
23,856 KB
testcase_23 AC 78 ms
23,640 KB
testcase_24 AC 75 ms
23,856 KB
testcase_25 AC 75 ms
23,532 KB
testcase_26 AC 76 ms
23,640 KB
testcase_27 AC 78 ms
24,252 KB
testcase_28 AC 75 ms
24,360 KB
testcase_29 AC 75 ms
24,024 KB
testcase_30 AC 74 ms
24,336 KB
testcase_31 AC 76 ms
24,024 KB
testcase_32 AC 79 ms
23,688 KB
testcase_33 AC 88 ms
23,532 KB
testcase_34 AC 75 ms
24,036 KB
testcase_35 AC 77 ms
23,652 KB
testcase_36 AC 77 ms
23,424 KB
testcase_37 AC 75 ms
23,832 KB
testcase_38 AC 71 ms
23,628 KB
testcase_39 AC 75 ms
23,640 KB
testcase_40 AC 72 ms
23,436 KB
testcase_41 AC 72 ms
23,652 KB
testcase_42 AC 76 ms
23,448 KB
testcase_43 AC 74 ms
24,408 KB
testcase_44 AC 84 ms
23,376 KB
testcase_45 AC 78 ms
24,036 KB
testcase_46 AC 79 ms
24,048 KB
testcase_47 AC 77 ms
24,228 KB
testcase_48 AC 78 ms
24,036 KB
testcase_49 AC 74 ms
24,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define rep(i,l,r) for(int i=(l);i<(r);++i)

int main(){
	int n,t; cin>>n>>t;
	vector<int> a(n),b(n),c(n),d(n);
	rep(i,0,n) cin>>a[i]>>b[i]>>c[i]>>d[i];
	int x=2,y=1,z=2,w=1;
	
	rep(i,0,200){
		int u,v; cin>>u>>v;
		cout<<3<<endl; //money
	}
	rep(i,0,200){
		int u,v; cin>>u>>v;
		cout<<2<<endl; //supporter
	}
	rep(i,0,100){
		int u,v; cin>>u>>v;
		if(u<1e7/sqrt(v)) cout<<3<<endl; //money
		else{
			cout<<1<<x<<y<<z<<w<<endl; //road
			x++; y++; z++; w++;
		}
	}
}
0