結果
| 問題 | No.666 1000000007で割るだけ |
| コンテスト | |
| ユーザー |
kokatsu
|
| 提出日時 | 2022-07-19 22:49:04 |
| 言語 | D (dmd 2.112.0) |
| 結果 |
AC
|
| 実行時間 | 0 ms / 2,000 ms |
| + 990µs | |
| コード長 | 141 bytes |
| 記録 | |
| コンパイル時間 | 1,027 ms |
| コンパイル使用メモリ | 184,320 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-27 05:34:07 |
| 合計ジャッジ時間 | 2,469 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 24 |
コンパイルメッセージ
/home/linuxbrew/.linuxbrew/opt/dmd/include/dlang/dmd/core/checkedint.d(814): Warning: cannot inline function `core.checkedint.mulu!().mulu`
ulong mulu()(ulong x, uint y, ref bool overflow)
^
ソースコード
import std;
void main() {
long A, B;
readf("%d %d\n", A, B);
long M = 1000000007;
long res = A * B % M;
res.writeln;
}
kokatsu