結果

問題 No.2224 UFO Game
ユーザー meme
提出日時 2023-04-27 22:17:22
言語 PHP
(8.3.4)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 2,806 ms
コンパイル使用メモリ 31,000 KB
実行使用メモリ 31,296 KB
最終ジャッジ日時 2024-11-17 03:04:02
合計ジャッジ時間 4,150 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
31,272 KB
testcase_01 AC 40 ms
31,032 KB
testcase_02 AC 39 ms
31,296 KB
testcase_03 AC 39 ms
30,904 KB
testcase_04 AC 38 ms
31,048 KB
testcase_05 AC 37 ms
30,912 KB
testcase_06 AC 38 ms
31,212 KB
testcase_07 AC 39 ms
31,164 KB
testcase_08 AC 37 ms
30,904 KB
testcase_09 AC 38 ms
30,820 KB
testcase_10 AC 36 ms
30,904 KB
testcase_11 AC 37 ms
31,008 KB
testcase_12 AC 36 ms
31,028 KB
testcase_13 AC 40 ms
30,948 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
	$input = trim(fgets(STDIN));
	
	$left = substr($input,0,1);
	
	if($left === 'x'){
		$t = 2 ** 32 - (int)substr($input,1);
	}else{
		$t = (int)$input;
	}
	
	echo $t;
?>
0