結果
問題 | No.201 yukicoderじゃんけん |
ユーザー | papinianus |
提出日時 | 2016-06-20 15:44:52 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 771 bytes |
コンパイル時間 | 6,594 ms |
コンパイル使用メモリ | 31,892 KB |
実行使用メモリ | 32,276 KB |
最終ジャッジ日時 | 2024-10-11 13:40:10 |
合計ジャッジ時間 | 7,629 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 42 ms
31,204 KB |
testcase_02 | AC | 42 ms
31,088 KB |
testcase_03 | AC | 42 ms
31,396 KB |
testcase_04 | AC | 43 ms
31,160 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 42 ms
31,256 KB |
testcase_08 | AC | 42 ms
31,076 KB |
testcase_09 | WA | - |
testcase_10 | AC | 42 ms
30,932 KB |
testcase_11 | AC | 43 ms
31,128 KB |
testcase_12 | AC | 42 ms
30,872 KB |
testcase_13 | WA | - |
testcase_14 | AC | 43 ms
31,188 KB |
testcase_15 | AC | 42 ms
31,100 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 43 ms
31,336 KB |
testcase_19 | AC | 42 ms
31,064 KB |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php list($first_name, $first_point, $devnull) = explode(' ', trim(fgets(STDIN))); list($second_name, $second_point, $devnull) = explode(' ', trim(fgets(STDIN))); if(my_strcmp($first_point,$second_point)==0) { echo '-1'; } else if(my_strcmp($first_point,$second_point)>0) { echo $first_name; } else { echo $second_name; } echo PHP_EOL; function my_strcmp($str1, $str2) { $len1 = strlen($str1); $len2 = strlen($str2); if($len1 > $len2) { return 1; } else if($len2 > $len1) { return -1; } else { for($i = 0; $i < $len1; $i++){ if($str1[$i] > $str2[$i]) { return 1; } else if($str1[$i] > $str2[$i]) { return -1; } } return 0; } }