結果
| 問題 | No.373 かけ算と割った余り |
| コンテスト | |
| ユーザー |
subsn
|
| 提出日時 | 2023-06-19 09:18:55 |
| 言語 | C(gnu17) (gcc 15.2.0) |
| 結果 |
AC
|
| 実行時間 | 0 ms / 2,000 ms |
| + 708µs | |
| コード長 | 162 bytes |
| 記録 | |
| コンパイル時間 | 48 ms |
| コンパイル使用メモリ | 34,688 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-23 09:16:58 |
| 合計ジャッジ時間 | 1,101 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 5 |
ソースコード
#include <stdio.h>
#include <stdint.h>
int main()
{
uint64_t a, b, c, d;
scanf("%llu%llu%llu%llu",&a,&b,&c,&d);
printf("%llu\n",a * b % d * c % d);
}
subsn