結果
問題 | No.1713 trick or treat! |
ユーザー |
|
提出日時 | 2023-05-21 14:10:57 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 29 ms / 2,000 ms |
コード長 | 94 bytes |
コンパイル時間 | 77 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-12-21 19:16:08 |
合計ジャッジ時間 | 832 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 5 |
ソースコード
t1,t2 = map(int,input().split())k = t1|t2out = 1for i in range(k):out *= (i+1)print(out)