結果
問題 | No.5016 Worst Mayor |
ユーザー | Shawn stayC |
提出日時 | 2023-04-29 15:23:26 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 862 bytes |
コンパイル時間 | 2,554 ms |
コンパイル使用メモリ | 204,252 KB |
実行使用メモリ | 36,736 KB |
スコア | 0 |
最終ジャッジ日時 | 2023-04-29 15:23:36 |
合計ジャッジ時間 | 9,349 ms |
ジャッジサーバーID (参考情報) |
judge11 / judge13 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define rep(i,l,r) for(int i=(l);i<(r);++i) vector<int> dx={-1,0,1,0}; vector<int> dy={0,1,0,-1}; bool range(int x, int y){ if(x<0 || y<0 || x>=14 || y>=14) return true; return false; } 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]; random_device rd; mt19937 eng(rd()); uniform_int_distribution<int> sd1(1,14); uniform_int_distribution<int> sd2(1,14); rep(i,0,200){ int u,v; cin>>u>>v; cout<<3<<endl; //money } rep(i,0,150){ int u,v; cin>>u>>v; cout<<2<<endl; //supporter } rep(i,0,50){ int u,v; cin>>u>>v; if(u<1e7/sqrt(v)) cout<<3<<endl; //money else{ int x=sd1(eng), y=sd1(eng), d=sd2(eng); if(range(x+dx[d],y+dy[d])) d=sd2(eng); else cout<<1<<x<<y<<x+dx[d]<<y+dy[d]<<endl; //road } } }