結果

問題 No.687 E869120 and Constructing Array 1
ユーザー papinianuspapinianus
提出日時 2018-05-25 14:07:23
言語 PHP
(8.3.4)
結果
AC  
実行時間 39 ms / 1,000 ms
コード長 129 bytes
コンパイル時間 67 ms
コンパイル使用メモリ 30,804 KB
実行使用メモリ 31,384 KB
最終ジャッジ日時 2024-06-28 17:56:55
合計ジャッジ時間 945 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
31,148 KB
testcase_01 AC 37 ms
31,272 KB
testcase_02 AC 39 ms
31,180 KB
testcase_03 AC 39 ms
31,056 KB
testcase_04 AC 36 ms
31,384 KB
testcase_05 AC 35 ms
30,904 KB
testcase_06 AC 37 ms
30,708 KB
testcase_07 AC 37 ms
31,208 KB
testcase_08 AC 36 ms
31,120 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
declare(strict_types=1);
$N = trim(fgets(STDIN));
$half = floor($N /2);
$rest = $N - $half;
echo "{$half} {$rest}".PHP_EOL;
0