結果

問題 No.2011 Arbitrary Mod (Hidden)
ユーザー 259_Momone259_Momone
提出日時 2022-07-15 22:25:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 229 bytes
コンパイル時間 3,116 ms
コンパイル使用メモリ 254,452 KB
実行使用メモリ 4,508 KB
最終ジャッジ日時 2023-09-10 02:58:31
合計ジャッジ時間 12,501 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/extc++.h>

int main(){
    using namespace std;
    constexpr unsigned long mod{257 * 65537};
    unsigned long n;
    cin >> n;
    if(1UL & (n >> 3))abort();
    cout << mod << endl << 1 << endl;
    return 0;
}
0