結果

問題 No.2050 Speed
ユーザー #leucobird#leucobird
提出日時 2022-11-03 11:40:30
言語 PHP
(8.3.4)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 206 bytes
コンパイル時間 2,925 ms
コンパイル使用メモリ 32,144 KB
実行使用メモリ 31,796 KB
最終ジャッジ日時 2024-07-17 21:48:15
合計ジャッジ時間 1,613 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
31,628 KB
testcase_01 AC 44 ms
31,440 KB
testcase_02 AC 41 ms
31,460 KB
testcase_03 AC 42 ms
31,744 KB
testcase_04 AC 42 ms
31,496 KB
testcase_05 AC 41 ms
31,604 KB
testcase_06 AC 42 ms
31,796 KB
testcase_07 AC 41 ms
31,452 KB
testcase_08 AC 42 ms
31,496 KB
testcase_09 AC 42 ms
31,432 KB
testcase_10 AC 41 ms
31,416 KB
testcase_11 AC 42 ms
31,280 KB
testcase_12 AC 43 ms
31,540 KB
testcase_13 AC 42 ms
31,676 KB
testcase_14 AC 41 ms
31,572 KB
testcase_15 AC 42 ms
31,632 KB
testcase_16 AC 41 ms
31,316 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$stdin = trim(fgets(STDIN));
// $array = preg_split('/\s+/', $stdin);
list($a, $b) = preg_split('/\s+/', $stdin);
$a *= 1000;
$b *= 3600;
echo ($a == $b ? "same" : ($a > $b ? "KoD" : "blackyuki"));
?>
0