結果

問題 No.2050 Speed
ユーザー #leucobird#leucobird
提出日時 2022-11-03 11:40:00
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 205 bytes
コンパイル時間 2,514 ms
コンパイル使用メモリ 32,144 KB
実行使用メモリ 32,916 KB
最終ジャッジ日時 2024-07-17 21:47:30
合計ジャッジ時間 3,787 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
31,524 KB
testcase_01 WA -
testcase_02 AC 36 ms
31,440 KB
testcase_03 WA -
testcase_04 AC 36 ms
31,620 KB
testcase_05 WA -
testcase_06 AC 37 ms
31,696 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 36 ms
31,508 KB
testcase_13 AC 35 ms
31,448 KB
testcase_14 AC 36 ms
31,888 KB
testcase_15 AC 37 ms
31,520 KB
testcase_16 AC 36 ms
31,408 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" : "blackyui"));
?>
0