結果
問題 | No.373 かけ算と割った余り |
ユーザー | Lay_ec |
提出日時 | 2016-06-04 22:21:35 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 413 bytes |
コンパイル時間 | 697 ms |
コンパイル使用メモリ | 80,012 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-08 08:15:13 |
合計ジャッジ時間 | 1,172 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
ソースコード
#include <iostream> #include <string> #include <vector> #include <cmath> #include <algorithm> #include <cstdlib> #include <ctime> #include <cstdio> #include <functional> #include <set> #include <sstream> #include <map> #include <queue> #include <stack> using namespace std; const long long mod=1000000007; int main() { long long a,b,c,d; cin>>a>>b>>c>>d; cout<<((a%d)*(b%d)*(c%d))%d<<endl; return 0; }