結果
問題 | No.164 ちっちゃくないよ!! |
ユーザー | papinianus |
提出日時 | 2016-08-29 14:00:44 |
言語 | PHP (8.3.4) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 623 bytes |
コンパイル時間 | 3,021 ms |
コンパイル使用メモリ | 32,272 KB |
実行使用メモリ | 33,044 KB |
最終ジャッジ日時 | 2024-11-14 06:44:47 |
合計ジャッジ時間 | 4,237 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
コンパイルメッセージ
PHP Deprecated: Optional parameter $std declared before required parameter $cut is implicitly treated as a required parameter in Main.php on line 13 Deprecated: Optional parameter $std declared before required parameter $cut is implicitly treated as a required parameter in Main.php on line 13 No syntax errors detected in Main.php
ソースコード
<?php $alpha = "0123456789abcdefghijklmnopqrstuvwxyz"; $n = trim(fgets(STDIN)); $min = gmp_init("0"); for(; $n; $n--) { $str = str_split(trim(fgets(STDIN))); $std = stripos($alpha, max($str))+1; $tmp = arrayToInt($str, $std, $min); if(gmp_cmp($min, 0) == 0 || gmp_cmp($tmp, $min) < 0) {$min = $tmp;} } echo gmp_strval($min).PHP_EOL; function arrayToInt($array, $std = 2, $cut) { global $alpha; $val = 0; $base = 1; while(!is_null($char = array_pop($array))) { $val = gmp_add(gmp_mul(stripos($alpha,$char),$base), $val); $base = gmp_mul($base,$std); } return $val; }