結果

問題 No.353 ヘイトプラス
ユーザー しのっちしのっち
提出日時 2019-07-02 14:28:44
言語 PHP
(8.3.4)
結果
AC  
実行時間 8 ms / 1,000 ms
コード長 156 bytes
コンパイル時間 48 ms
コンパイル使用メモリ 12,088 KB
実行使用メモリ 12,356 KB
最終ジャッジ日時 2023-09-17 00:12:27
合計ジャッジ時間 902 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
12,324 KB
testcase_01 AC 7 ms
12,356 KB
testcase_02 AC 7 ms
12,284 KB
testcase_03 AC 8 ms
12,204 KB
testcase_04 AC 7 ms
12,220 KB
testcase_05 AC 7 ms
12,304 KB
testcase_06 AC 7 ms
12,328 KB
testcase_07 AC 7 ms
12,280 KB
testcase_08 AC 7 ms
12,284 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