結果
問題 |
No.666 1000000007で割るだけ
|
ユーザー |
![]() |
提出日時 | 2018-04-20 09:21:26 |
言語 | PHP (843.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 277 bytes |
コンパイル時間 | 96 ms |
コンパイル使用メモリ | 32,400 KB |
実行使用メモリ | 32,528 KB |
最終ジャッジ日時 | 2024-06-27 05:02:27 |
合計ジャッジ時間 | 1,843 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 1 WA * 23 |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php // Your code here! //$input=explode(' ',trim(fgets(STDIN))); $stdin = "2 2"; $input=explode(' ',trim($stdin)); $a=intval($input[0]); $b=intval($input[1]); //$c=intval($input[2]); $n = $a*$b; $c = 1000000007; $n = $n%$c; echo $n; //var_dump(strlen($stdin)-8); ?>