結果
問題 | No.5003 物理好きクリッカー |
ユーザー | iehn_ |
提出日時 | 2018-12-05 22:00:18 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,541 bytes |
コンパイル時間 | 1,491 ms |
実行使用メモリ | 21,960 KB |
スコア | 312,350 |
平均クエリ数 | 10000.00 |
最終ジャッジ日時 | 2021-07-19 08:48:44 |
合計ジャッジ時間 | 4,956 ms |
ジャッジサーバーID (参考情報) |
judge10 / judge11 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
21,936 KB |
testcase_01 | WA | - |
testcase_02 | AC | 40 ms
21,852 KB |
testcase_03 | AC | 39 ms
21,552 KB |
testcase_04 | AC | 39 ms
21,888 KB |
testcase_05 | AC | 40 ms
21,468 KB |
testcase_06 | AC | 35 ms
21,720 KB |
testcase_07 | AC | 40 ms
21,372 KB |
testcase_08 | AC | 39 ms
21,312 KB |
testcase_09 | AC | 39 ms
21,876 KB |
testcase_10 | AC | 39 ms
21,468 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 39 ms
21,504 KB |
testcase_14 | AC | 39 ms
21,720 KB |
testcase_15 | AC | 40 ms
21,324 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 38 ms
21,864 KB |
testcase_19 | AC | 39 ms
21,888 KB |
testcase_20 | AC | 39 ms
21,324 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 40 ms
21,276 KB |
testcase_24 | AC | 40 ms
21,372 KB |
testcase_25 | WA | - |
testcase_26 | AC | 40 ms
21,492 KB |
testcase_27 | AC | 40 ms
21,852 KB |
testcase_28 | AC | 39 ms
21,504 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 40 ms
21,708 KB |
ソースコード
// C++11 #include <algorithm> #include <cstdlib> #include <iostream> #include <fstream> #include <vector> #include <cmath> #include "bits/stdc++.h" #include <sys/time.h> #include <emmintrin.h> #include <string> #include <bitset> using namespace std; inline long long GetTSC() { long long lo, hi; asm volatile ("rdtsc": "=a"(lo), "=d"(hi)); return lo + (hi << 32); } inline double GetSeconds() { return GetTSC() / 2.8e9; } struct XorShift { uint64_t x = 88172645463325252ULL; XorShift() {} void setSeed(uint64_t seed) { x = seed; } uint64_t next() { x ^= x << 13; x ^= x >> 7; x ^= x << 17; return x; } int nextInt(int n) { uint64_t upper = 0xFFFFFFFFFFFFFFFFULL / n * n; uint64_t v = next(); while (v >= upper) { v = next(); } return v % n; } double nextDouble() { uint64_t v = next() >> 11; // 53bit return (double)v / (1ULL << 53); } }; const double TO = 9.9; const double eps = 1e-7; const double inf = 1e7; const int N = 10000; char S[N]; double starttime, gt; int tt,ctt; XorShift xs; void init(){ int n; scanf("%d%s", &n, S); } long calc_score(){ long r = 0; return r; } void solve(){ } void output(){ for(int i=0; i<N; i++){ cout << "click" << endl; } } int main() { srand((unsigned) time(NULL)); xs.setSeed(rand() % 65536 || 65537); double mainstart = GetSeconds(); cerr << setprecision(10); init(); cerr << "init_time: " << GetSeconds() - mainstart << endl; solve(); output(); cerr << "main_time: " << GetSeconds() - mainstart << endl; }