結果
| 問題 | No.5017 Tool-assisted Shooting |
| コンテスト | |
| ユーザー |
ゆい
|
| 提出日時 | 2023-07-16 14:58:22 |
| 言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 457 bytes |
| コンパイル時間 | 2,037 ms |
| コンパイル使用メモリ | 198,472 KB |
| 実行使用メモリ | 34,572 KB |
| スコア | 77 |
| 平均クエリ数 | 1.19 |
| 最終ジャッジ日時 | 2023-07-16 14:58:29 |
| 合計ジャッジ時間 | 5,684 ms |
|
ジャッジサーバーID (参考情報) |
judge15 / judge11 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 TLE * 1 -- * 98 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using ld= long double;
using P=pair<ll,ll>;
using V=vector<ll>;
#define rep(i,n) for(ll i=0;i<n;i++)
#define REP(i,n) for(ll i=1;i<=n;i++)
int nh=60,nw=26;
//int nh=6,nw=3;
int main(){
while(true){
int n;
cin >> n;
if(n==-1) break;
rep(i,n){
int h,p,x;
cin >> h >> p >> x;
}
cout << "S" << endl;
}
}
ゆい