結果
| 問題 | 
                            No.2120 場合の数の下8桁
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2022-11-04 22:41:42 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 88 bytes | 
| コンパイル時間 | 664 ms | 
| コンパイル使用メモリ | 12,288 KB | 
| 実行使用メモリ | 64,168 KB | 
| 最終ジャッジ日時 | 2024-07-18 20:38:34 | 
| 合計ジャッジ時間 | 19,400 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | WA * 13 RE * 1 TLE * 1 -- * 5 | 
ソースコード
from scipy.special import comb N = int(input()) M = int(input()) print(comb(N,M,10**8))