結果

問題 No.1713 trick or treat!
ユーザー #leucobird
提出日時 2021-11-21 20:48:23
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 178 bytes
コンパイル時間 426 ms
コンパイル使用メモリ 65,996 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-23 03:06:51
合計ジャッジ時間 870 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other AC * 1 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;

int main(void) {
    int trick, treat;
    cin >> trick >> treat;
    cout << (trick | treat) << endl;
    return 0;
}
0