結果
問題 | No.1713 trick or treat! |
ユーザー |
![]() |
提出日時 | 2022-08-03 16:04:06 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 271 bytes |
コンパイル時間 | 560 ms |
コンパイル使用メモリ | 71,232 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-13 09:23:12 |
合計ジャッジ時間 | 1,106 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 5 |
ソースコード
#include <iostream>#include <vector>#include <map>#include<string>#define ll long longusing namespace std;int main() {int a,b,c;ll ans=1;cin>>a>>b;c=a|b;for (int i=1;i<=c;i++){ans*=i;}cout<<ans<<endl;return 0;}