結果

問題 No.835 ジュース
ユーザー papinianuspapinianus
提出日時 2021-06-04 00:27:10
言語 PHP
(8.3.4)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 104 bytes
コンパイル時間 1,633 ms
コンパイル使用メモリ 30,492 KB
実行使用メモリ 31,008 KB
最終ジャッジ日時 2024-04-28 19:38:08
合計ジャッジ時間 1,144 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
30,808 KB
testcase_01 AC 39 ms
31,008 KB
testcase_02 AC 39 ms
30,488 KB
testcase_03 AC 40 ms
30,784 KB
testcase_04 AC 40 ms
30,988 KB
testcase_05 AC 41 ms
30,896 KB
testcase_06 AC 42 ms
30,808 KB
testcase_07 AC 42 ms
30,860 KB
testcase_08 AC 40 ms
30,704 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
declare(strict_types=1);
$N = intval(trim(fgets(STDIN)));
echo (int)floor($N * 1.5);
echo PHP_EOL;
0