結果

問題 No.350 d=vt
ユーザー 重荷重荷
提出日時 2016-03-29 12:02:19
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 113 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 30,804 KB
実行使用メモリ 31,500 KB
最終ジャッジ日時 2024-04-15 10:24:41
合計ジャッジ時間 1,412 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
31,272 KB
testcase_01 AC 46 ms
31,328 KB
testcase_02 AC 46 ms
31,412 KB
testcase_03 AC 44 ms
31,252 KB
testcase_04 AC 44 ms
31,340 KB
testcase_05 WA -
testcase_06 AC 41 ms
30,996 KB
testcase_07 AC 41 ms
31,500 KB
testcase_08 AC 42 ms
31,468 KB
testcase_09 AC 41 ms
31,040 KB
testcase_10 AC 45 ms
31,112 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
  list($a,$b) = explode(" ", trim(fgets(STDIN)));
  $ans = ($a * $b)>=1?floor($a * $b):0;
  printf("$ans");
0