結果

問題 No.666 1000000007で割るだけ
ユーザー dyechidyechi
提出日時 2019-03-28 18:11:19
言語 PHP
(8.3.4)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 91 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 30,660 KB
実行使用メモリ 31,156 KB
最終ジャッジ日時 2024-10-13 08:34:16
合計ジャッジ時間 1,941 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
30,752 KB
testcase_01 AC 41 ms
31,092 KB
testcase_02 AC 39 ms
30,840 KB
testcase_03 AC 38 ms
30,996 KB
testcase_04 AC 39 ms
30,928 KB
testcase_05 AC 39 ms
30,944 KB
testcase_06 AC 38 ms
30,812 KB
testcase_07 AC 39 ms
30,928 KB
testcase_08 AC 39 ms
30,868 KB
testcase_09 AC 39 ms
30,600 KB
testcase_10 AC 39 ms
30,940 KB
testcase_11 AC 40 ms
31,156 KB
testcase_12 AC 40 ms
30,728 KB
testcase_13 AC 39 ms
30,932 KB
testcase_14 AC 39 ms
30,840 KB
testcase_15 AC 39 ms
30,632 KB
testcase_16 AC 38 ms
31,136 KB
testcase_17 AC 39 ms
30,932 KB
testcase_18 AC 38 ms
30,960 KB
testcase_19 AC 39 ms
30,728 KB
testcase_20 AC 38 ms
30,768 KB
testcase_21 AC 38 ms
30,868 KB
testcase_22 AC 37 ms
30,924 KB
testcase_23 AC 38 ms
30,872 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$s = trim(fgets(STDIN));
$s = explode(" ", $s);

echo $s[0] * $s[1] % 1000000007;
?>
0