結果

問題 No.373 かけ算と割った余り
ユーザー Lay_ec
提出日時 2016-06-04 22:21:35
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 413 bytes
コンパイル時間 697 ms
コンパイル使用メモリ 80,012 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-08 08:15:13
合計ジャッジ時間 1,172 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 3 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0