結果

問題 No.1713 trick or treat!
ユーザー O2MTO2MT
提出日時 2021-10-23 15:51:57
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 92 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 81,632 KB
実行使用メモリ 53,304 KB
最終ジャッジ日時 2023-10-25 22:45:13
合計ジャッジ時間 1,704 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,304 KB
testcase_01 AC 33 ms
53,304 KB
testcase_02 AC 32 ms
53,304 KB
testcase_03 AC 36 ms
53,304 KB
testcase_04 AC 34 ms
53,304 KB
testcase_05 AC 33 ms
53,304 KB
testcase_06 AC 34 ms
53,304 KB
testcase_07 AC 33 ms
53,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x,y = map(int,input().split())
n = x|y
ans = 1
for i in range(1,n+1):
  ans *= i

print(ans)
0