結果
問題 | No.1713 trick or treat! |
ユーザー |
|
提出日時 | 2021-10-28 16:49:13 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 520 bytes |
コンパイル時間 | 2,251 ms |
コンパイル使用メモリ | 192,136 KB |
最終ジャッジ日時 | 2025-01-25 08:02:00 |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 5 |
ソースコード
#include<bits/stdc++.h>using namespace std;using ll = long long int;using ull = unsigned long long int;using ld = long double;constexpr ll MAX = 2000000000000000000;constexpr ld PI = 3.14159265358979;constexpr ll MOD = 0;//2024948111;ld dotorad(ld K){return PI * K / 180.0;}ld radtodo(ld K){return K * 180.0 / PI;}mt19937 mt;void randinit(){srand((unsigned)time(NULL));mt = mt19937(rand());}int main(){ll a,b,p = 1;cin >> a >> b;for(ll i = 1;i <= (a | b);i++) p *= i;cout << p << endl;}