結果
問題 | No.109 N! mod M |
ユーザー | dora_maruta |
提出日時 | 2015-01-07 15:02:44 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 410 bytes |
コンパイル時間 | 430 ms |
コンパイル使用メモリ | 55,952 KB |
実行使用メモリ | 10,272 KB |
最終ジャッジ日時 | 2024-06-13 02:55:44 |
合計ジャッジ時間 | 7,315 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 147 ms
6,940 KB |
testcase_02 | AC | 81 ms
6,944 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
ソースコード
#include<iostream> unsigned long long memo[100000000]; int main(){ int t; std::cin >> t; for (int i = 0; i < t; ++i){ int n, m; std::cin >> n >> m; unsigned long long ans = 1; if (m == 1){ std::cout << 0 << std::endl; continue; } for (int j = 2; j <= n; ++j){ //if(j%m!=0)ans *= j % m; ans *= j; ans %= m; } std::cout << ans << std::endl; } //system("pause"); return 0; }