結果

問題 No.2050 Speed
ユーザー #leucobird#leucobird
提出日時 2022-11-03 11:40:30
言語 PHP
(8.3.4)
結果
AC  
実行時間 16 ms / 2,000 ms
コード長 206 bytes
コンパイル時間 1,284 ms
コンパイル使用メモリ 18,456 KB
実行使用メモリ 18,992 KB
最終ジャッジ日時 2023-09-24 21:22:34
合計ジャッジ時間 1,259 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
18,932 KB
testcase_01 AC 16 ms
18,928 KB
testcase_02 AC 15 ms
18,976 KB
testcase_03 AC 16 ms
18,844 KB
testcase_04 AC 16 ms
18,948 KB
testcase_05 AC 16 ms
18,912 KB
testcase_06 AC 16 ms
18,872 KB
testcase_07 AC 16 ms
18,924 KB
testcase_08 AC 15 ms
18,932 KB
testcase_09 AC 16 ms
18,868 KB
testcase_10 AC 15 ms
18,868 KB
testcase_11 AC 15 ms
18,844 KB
testcase_12 AC 15 ms
18,848 KB
testcase_13 AC 15 ms
18,980 KB
testcase_14 AC 15 ms
18,992 KB
testcase_15 AC 16 ms
18,920 KB
testcase_16 AC 15 ms
18,844 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