結果

問題 No.3027 114514
ユーザー antaanta
提出日時 2017-04-01 00:00:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 811 bytes
コンパイル時間 2,117 ms
コンパイル使用メモリ 163,172 KB
実行使用メモリ 12,176 KB
最終ジャッジ日時 2023-09-21 21:36:53
合計ジャッジ時間 8,153 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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i))
#define rer(i,l,u) for(int (i)=(int)(l);(i)<=(int)(u);++(i))
#define reu(i,l,u) for(int (i)=(int)(l);(i)<(int)(u);++(i))
static const int INF = 0x3f3f3f3f; static const long long INFL = 0x3f3f3f3f3f3f3f3fLL;
typedef vector<int> vi; typedef pair<int, int> pii; typedef vector<pair<int, int> > vpii; typedef long long ll;
template<typename T, typename U> static void amin(T &x, U y) { if (y < x) x = y; }
template<typename T, typename U> static void amax(T &x, U y) { if (x < y) x = y; }

int main() {
	chrono::high_resolution_clock clk;
	auto t = clk.now();
	int n;
	while (~scanf("%d", &n)) {
		puts("0");
		while (chrono::duration_cast<chrono::milliseconds>(t - clk.now()).count() < 100 * n)
			;
	}
	return 0;
}
0