結果

問題 No.5003 物理好きクリッカー
ユーザー k_kirik_kiri
提出日時 2018-12-01 19:07:09
言語 C++11
(gcc 11.4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 178 bytes
コンパイル時間 968 ms
実行使用メモリ 21,984 KB
スコア 0
平均クエリ数 10000.00
最終ジャッジ日時 2021-07-19 07:47:37
合計ジャッジ時間 4,465 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
21,864 KB
testcase_01 AC 35 ms
21,204 KB
testcase_02 AC 35 ms
21,840 KB
testcase_03 AC 34 ms
21,504 KB
testcase_04 AC 37 ms
21,516 KB
testcase_05 AC 42 ms
21,720 KB
testcase_06 AC 37 ms
21,480 KB
testcase_07 WA -
testcase_08 AC 35 ms
21,648 KB
testcase_09 AC 36 ms
21,504 KB
testcase_10 AC 36 ms
21,840 KB
testcase_11 AC 37 ms
21,852 KB
testcase_12 AC 38 ms
21,840 KB
testcase_13 AC 35 ms
21,924 KB
testcase_14 AC 40 ms
21,840 KB
testcase_15 AC 36 ms
21,924 KB
testcase_16 AC 36 ms
21,480 KB
testcase_17 AC 37 ms
21,840 KB
testcase_18 AC 37 ms
21,648 KB
testcase_19 AC 41 ms
21,852 KB
testcase_20 AC 36 ms
21,516 KB
testcase_21 AC 40 ms
21,888 KB
testcase_22 AC 36 ms
21,852 KB
testcase_23 AC 40 ms
21,348 KB
testcase_24 AC 40 ms
21,984 KB
testcase_25 AC 37 ms
21,528 KB
testcase_26 WA -
testcase_27 AC 36 ms
21,864 KB
testcase_28 AC 37 ms
21,564 KB
testcase_29 WA -
testcase_30 AC 39 ms
21,456 KB
testcase_31 AC 35 ms
21,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
  int N;
  char S;
  cin >> N >> S;
  for (int i = 0; i < N; i++) {
    cout << "nothing" << endl;
    cin >> S;
  }
}
0