結果

問題 No.5007 Steiner Space Travel
ユーザー simansiman
提出日時 2022-08-01 14:21:23
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 631 bytes
コンパイル時間 2,259 ms
実行使用メモリ 3,484 KB
スコア 1,221,702
最終ジャッジ日時 2022-08-01 14:21:31
合計ジャッジ時間 4,329 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
3,384 KB
testcase_01 AC 1 ms
3,372 KB
testcase_02 AC 2 ms
3,480 KB
testcase_03 AC 2 ms
3,376 KB
testcase_04 AC 1 ms
3,376 KB
testcase_05 AC 1 ms
3,316 KB
testcase_06 AC 1 ms
3,316 KB
testcase_07 AC 1 ms
3,304 KB
testcase_08 AC 1 ms
3,304 KB
testcase_09 AC 1 ms
3,308 KB
testcase_10 AC 2 ms
3,380 KB
testcase_11 AC 1 ms
3,408 KB
testcase_12 AC 1 ms
3,376 KB
testcase_13 AC 1 ms
3,396 KB
testcase_14 AC 2 ms
3,368 KB
testcase_15 AC 1 ms
3,396 KB
testcase_16 AC 1 ms
3,376 KB
testcase_17 AC 2 ms
3,420 KB
testcase_18 AC 2 ms
3,304 KB
testcase_19 AC 2 ms
3,388 KB
testcase_20 AC 1 ms
3,284 KB
testcase_21 AC 1 ms
3,484 KB
testcase_22 AC 1 ms
3,312 KB
testcase_23 AC 1 ms
3,484 KB
testcase_24 AC 1 ms
3,388 KB
testcase_25 AC 2 ms
3,368 KB
testcase_26 AC 2 ms
3,368 KB
testcase_27 AC 2 ms
3,284 KB
testcase_28 AC 1 ms
3,312 KB
testcase_29 AC 1 ms
3,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

const int N = 100;
const int M = 8;

int main() {
  int _N, _M;
  cin >> _N >> _M;

  for (int i = 0; i < M; ++i) {
    int a, b;
    cin >> a >> b;
  }

  for (int i = 0; i < M; ++i) {
    cout << "0 0" << endl;
  }

  cout << N + 1 << endl;
  cout << "1 1" << endl;

  for (int i = 0; i < N - 1; ++i) {
    cout << "1 " << (i + 2) << endl;
  }

  cout << "1 1" << endl;

  return 0;
}
0