結果

問題 No.1588 Connection
ユーザー merom686merom686
提出日時 2021-07-09 00:14:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
QLE  
(最初)
実行時間 -
コード長 176 bytes
コンパイル時間 2,239 ms
コンパイル使用メモリ 199,692 KB
実行使用メモリ 25,476 KB
平均クエリ数 1.00
最終ジャッジ日時 2024-07-17 12:46:37
合計ジャッジ時間 4,959 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
24,836 KB
testcase_01 WA -
testcase_02 AC 24 ms
24,964 KB
testcase_03 AC 24 ms
24,580 KB
testcase_04 AC 23 ms
24,820 KB
testcase_05 AC 23 ms
24,964 KB
testcase_06 AC 23 ms
24,836 KB
testcase_07 AC 23 ms
25,220 KB
testcase_08 AC 23 ms
25,220 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 23 ms
24,964 KB
testcase_15 AC 23 ms
24,580 KB
testcase_16 AC 23 ms
24,836 KB
testcase_17 AC 23 ms
24,836 KB
testcase_18 AC 23 ms
25,220 KB
testcase_19 AC 24 ms
24,952 KB
testcase_20 AC 25 ms
24,580 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 25 ms
24,824 KB
testcase_26 AC 26 ms
24,836 KB
testcase_27 AC 25 ms
24,580 KB
testcase_28 AC 23 ms
24,836 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int a[502][502];

int main() {
    int n, m;
    cin >> n >> m;

    cout << "No" << endl;

    return 0;
}
0