結果
問題 | No.666 1000000007で割るだけ |
ユーザー |
|
提出日時 | 2018-04-17 11:01:58 |
言語 | D (dmd 2.109.1) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 290 bytes |
コンパイル時間 | 935 ms |
コンパイル使用メモリ | 114,048 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-13 00:32:06 |
合計ジャッジ時間 | 1,438 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 24 |
ソースコード
import std.stdio, std.array, std.string, std.conv, std.algorithm;import std.typecons, std.range, std.random, std.math, std.container;import std.numeric, std.bigint, core.bitop, std.bitmanip;void main() {auto s = readln.split.map!(to!long);writeln(s[0] * s[1] % 1000000007);}