結果

問題 No.890 移調の限られた旋法
ユーザー finefine
提出日時 2019-09-20 21:43:16
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 241 bytes
コンパイル時間 1,552 ms
コンパイル使用メモリ 162,500 KB
実行使用メモリ 4,356 KB
最終ジャッジ日時 2023-10-12 18:36:45
合計ジャッジ時間 5,260 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 1 ms
4,348 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 2 ms
4,352 KB
testcase_06 RE -
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 2 ms
4,352 KB
testcase_09 WA -
testcase_10 AC 2 ms
4,348 KB
testcase_11 AC 2 ms
4,352 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 1 ms
4,352 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 2 ms
4,352 KB
testcase_21 AC 2 ms
4,352 KB
testcase_22 RE -
testcase_23 AC 1 ms
4,348 KB
testcase_24 RE -
testcase_25 AC 2 ms
4,348 KB
testcase_26 RE -
testcase_27 WA -
testcase_28 AC 1 ms
4,352 KB
testcase_29 RE -
testcase_30 RE -
testcase_31 WA -
testcase_32 RE -
testcase_33 RE -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    ll n, K;
    cin >> n >> K;
    assert(n % 2 == 1 || K % 2 == 1);
    cout << 0 << endl;
    return 0;
}
0