結果

問題 No.666 1000000007で割るだけ
ユーザー takimoto111
提出日時 2018-04-20 09:19:11
言語 PHP
(843.2)
結果
WA  
実行時間 -
コード長 260 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 32,016 KB
実行使用メモリ 32,532 KB
最終ジャッジ日時 2024-06-27 05:02:22
合計ジャッジ時間 2,201 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 24
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?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;
$n = $n%$b;

echo $n;
//var_dump(strlen($stdin)-8);

?>
0