結果
| 問題 | No.666 1000000007で割るだけ |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-10-01 15:12:29 |
| 言語 | D (dmd 2.112.0) |
| 結果 |
AC
|
| 実行時間 | 0 ms / 2,000 ms |
| + 928µs | |
| コード長 | 104 bytes |
| 記録 | |
| コンパイル時間 | 712 ms |
| コンパイル使用メモリ | 108,160 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-27 00:04:07 |
| 合計ジャッジ時間 | 2,073 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_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.stdio;
void main() {
ulong a, b; readf("%s %s\n", &a, &b);
writeln(a*b%1000000007);
}