結果

問題 No.1713 trick or treat!
ユーザー BobBob
提出日時 2022-01-20 17:25:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 746 bytes
コンパイル時間 1,813 ms
コンパイル使用メモリ 200,848 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-03 03:08:08
合計ジャッジ時間 2,267 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 1 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
#define mp make_pair
#define F first
#define S second
#define all(x) x.begin(), x.end()
#define PI 3.1415926535897932384626
mt19937_64 rang(chrono::high_resolution_clock::now().time_since_epoch().count());

 
 
const int mod = 1'000'000'007;
const int N = 3e5, M = N;
 

 
 
void solve() {
 int a, b;
 cin >> a >> b;
 int g = a | b;
 int ans = 1;
 for(int i = 1; i <= g; i++){
  ans *= i;
 } 
 cout << ans << "\n";
 
}
 
 
int main() {
    ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0);
    srand(chrono::high_resolution_clock::now().time_since_epoch().count());
 
    int t = 1;
    //cin >> t;
    while(t--) {
      solve();
    }
 
    return 0;
}
0