結果
問題 |
No.373 かけ算と割った余り
|
ユーザー |
![]() |
提出日時 | 2016-06-04 22:24:20 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 328 bytes |
コンパイル時間 | 684 ms |
コンパイル使用メモリ | 69,072 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-08 08:19:29 |
合計ジャッジ時間 | 1,221 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 3 WA * 2 |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <string> #include <queue> #include <stack> #include <complex> using namespace std; using ull = unsigned long long; using ll = long long; using ld = long double; int main(){ ull a, b, c, d; cin >> a >> b >> c >> d; cout << ((a * b) * c) % d << endl; }