結果

問題 No.374 コイン
ユーザー papinianuspapinianus
提出日時 2016-10-25 08:44:22
言語 PHP
(8.3.4)
結果
AC  
実行時間 42 ms / 1,000 ms
コード長 121 bytes
コンパイル時間 69 ms
コンパイル使用メモリ 32,276 KB
実行使用メモリ 31,592 KB
最終ジャッジ日時 2024-05-03 05:58:06
合計ジャッジ時間 2,291 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
31,540 KB
testcase_01 AC 39 ms
31,196 KB
testcase_02 AC 35 ms
31,004 KB
testcase_03 AC 37 ms
31,140 KB
testcase_04 AC 37 ms
31,320 KB
testcase_05 AC 34 ms
31,116 KB
testcase_06 AC 34 ms
31,220 KB
testcase_07 AC 35 ms
31,276 KB
testcase_08 AC 35 ms
31,236 KB
testcase_09 AC 36 ms
31,408 KB
testcase_10 AC 37 ms
31,328 KB
testcase_11 AC 35 ms
31,368 KB
testcase_12 AC 35 ms
31,092 KB
testcase_13 AC 42 ms
31,464 KB
testcase_14 AC 35 ms
31,592 KB
testcase_15 AC 34 ms
31,352 KB
testcase_16 AC 36 ms
31,424 KB
testcase_17 AC 38 ms
30,888 KB
testcase_18 AC 35 ms
31,100 KB
testcase_19 AC 36 ms
31,060 KB
testcase_20 AC 36 ms
31,496 KB
testcase_21 AC 34 ms
31,192 KB
testcase_22 AC 36 ms
31,360 KB
testcase_23 AC 35 ms
31,496 KB
testcase_24 AC 36 ms
30,956 KB
testcase_25 AC 35 ms
31,464 KB
testcase_26 AC 34 ms
31,072 KB
testcase_27 AC 36 ms
31,356 KB
testcase_28 AC 34 ms
31,128 KB
testcase_29 AC 34 ms
31,244 KB
testcase_30 AC 35 ms
31,284 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($a, $b) = explode(" ", trim(fgets(STDIN)));
if($a >= $b) { echo "S";}
else         { echo "K";}

echo PHP_EOL;
0