結果

問題 No.353 ヘイトプラス
ユーザー しのっちしのっち
提出日時 2019-07-02 14:28:44
言語 PHP
(8.3.4)
結果
AC  
実行時間 43 ms / 1,000 ms
コード長 156 bytes
コンパイル時間 66 ms
コンパイル使用メモリ 30,800 KB
実行使用メモリ 31,432 KB
最終ジャッジ日時 2024-07-03 22:44:12
合計ジャッジ時間 1,018 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
31,200 KB
testcase_01 AC 43 ms
30,996 KB
testcase_02 AC 43 ms
30,956 KB
testcase_03 AC 39 ms
31,176 KB
testcase_04 AC 39 ms
31,384 KB
testcase_05 AC 40 ms
31,432 KB
testcase_06 AC 40 ms
31,260 KB
testcase_07 AC 40 ms
31,236 KB
testcase_08 AC 40 ms
31,380 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($num_a, $num_b) = explode(" ", trim(fgets(STDIN)));
$total = 0;
$total -= $num_a;
$total -= $num_b;
echo (int)str_replace("-", "", $total)."\n";
0