結果

問題 No.513 宝探し2
ユーザー snrnsidysnrnsidy
提出日時 2021-09-25 16:12:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 240 bytes
コンパイル時間 1,915 ms
コンパイル使用メモリ 198,376 KB
実行使用メモリ 12,456 KB
最終ジャッジ日時 2023-09-18 23:03:31
合計ジャッジ時間 8,720 ms
ジャッジサーバーID
(参考情報)
judge12 / 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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main(void)
{
	cin.tie(0);
	ios::sync_with_stdio(false);

    for(int i=0;i<100;i++)
	{
    	cout << 0 << " " << i << endl;
    	int d;
    	cin>>d;
    	if(d==0)return 0;
  	}
	return 0;
}
0