結果
問題 | No.5017 Tool-assisted Shooting |
ユーザー |
|
提出日時 | 2023-07-16 15:05:14 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 64 ms / 2,000 ms |
コード長 | 869 bytes |
コンパイル時間 | 1,729 ms |
コンパイル使用メモリ | 166,428 KB |
実行使用メモリ | 24,420 KB |
スコア | 74,830 |
平均クエリ数 | 399.74 |
最終ジャッジ日時 | 2023-07-16 15:05:25 |
合計ジャッジ時間 | 10,574 ms |
ジャッジサーバーID (参考情報) |
judge14 / judge12 |
純コード判定しない問題か言語 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 100 |
ソースコード
#include <bits/stdc++.h>#include <stdlib.h>#include <time.h>using namespace std;#define ll long long#define all(x) (x).begin(), (x).end()#define yes "Yes"#define no "No"#define ret return#define xin cin#define cpit cout#define farg frag#define fix(x) fixed << setprecision(x)#define fore(p, v) for (auto &p : v)#define mp(a, b) make_pair(a, b)#define mt(a, b, c) make_tuple(a, b, c)#define rep(i, l, r) for (ll i = (l); i < (r); i++)#define inf ((1LL << 62) - (1LL << 31))#define built(bit) __builtin_popcount(bit)#define Pi 3.14159265ll mod = 1e9 + 7;int main(){ll T = 1000;while (T--){ll N;cin >> N;if (N == -1)break;vector<ll> H(N), P(N), X(N);for (ll i = 0; i < N; i++){cin >> H[i] >> P[i] >> X[i];}cout << 'S' << endl;}}