結果
問題 |
No.1809 Divide NCK
|
ユーザー |
![]() |
提出日時 | 2021-09-19 22:47:37 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 161 bytes |
コンパイル時間 | 149 ms |
コンパイル使用メモリ | 82,520 KB |
実行使用メモリ | 67,276 KB |
最終ジャッジ日時 | 2024-07-17 04:59:18 |
合計ジャッジ時間 | 3,714 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 3 |
other | RE * 39 |
ソースコード
N,K = map(int,input().split()) C = 1 for i in range(N,N-K,-1): C *= i for i in range(2,K+1): C //= i ans = 0 while not(C & 1): ans += 1 C >>= 1 print(ans)