結果

問題 No.441 和か積
ユーザー happy-beanshappy-beans
提出日時 2017-03-14 21:28:40
言語 PHP
(8.3.4)
結果
AC  
実行時間 45 ms / 1,000 ms
コード長 1,370 bytes
コンパイル時間 639 ms
コンパイル使用メモリ 32,276 KB
実行使用メモリ 32,404 KB
最終ジャッジ日時 2024-06-27 03:46:42
合計ジャッジ時間 3,627 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
32,016 KB
testcase_01 AC 40 ms
32,144 KB
testcase_02 AC 45 ms
32,020 KB
testcase_03 AC 41 ms
32,400 KB
testcase_04 AC 40 ms
31,960 KB
testcase_05 AC 40 ms
32,148 KB
testcase_06 AC 41 ms
32,148 KB
testcase_07 AC 40 ms
32,144 KB
testcase_08 AC 40 ms
32,144 KB
testcase_09 AC 40 ms
32,020 KB
testcase_10 AC 41 ms
32,144 KB
testcase_11 AC 40 ms
32,276 KB
testcase_12 AC 42 ms
32,276 KB
testcase_13 AC 41 ms
32,272 KB
testcase_14 AC 41 ms
32,276 KB
testcase_15 AC 39 ms
32,276 KB
testcase_16 AC 39 ms
32,348 KB
testcase_17 AC 40 ms
32,276 KB
testcase_18 AC 39 ms
32,020 KB
testcase_19 AC 40 ms
31,888 KB
testcase_20 AC 41 ms
32,400 KB
testcase_21 AC 40 ms
32,144 KB
testcase_22 AC 40 ms
32,272 KB
testcase_23 AC 42 ms
32,400 KB
testcase_24 AC 41 ms
32,020 KB
testcase_25 AC 41 ms
32,144 KB
testcase_26 AC 41 ms
32,404 KB
testcase_27 AC 41 ms
32,016 KB
testcase_28 AC 41 ms
32,012 KB
testcase_29 AC 41 ms
32,276 KB
testcase_30 AC 40 ms
31,760 KB
testcase_31 AC 43 ms
32,272 KB
testcase_32 AC 40 ms
32,396 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
// No. 441

$args = explode(" ", trim(fgets(STDIN)));
$a = $args[0];
$b = $args[1];

/*
 * A + B = A * B と仮定したとき
 * A = 0 とすると、条件から B = 0 となり、これは常に成り立つ。
 * -> A = AB - B
 * -> A = B(A - 1)
 * -> B = A / (A - 1)
 * A,Bは非負整数なので、A / (A - 1) が正の整数になるのは A = 2 のときのみ。
 * A = 2 のとき、B = 2
 *
 * A + B > A * B と仮定したとき
 * A = 0 とすると、条件から B > 0 となり、Bが1以上のとき常に成り立つ。B = 0 のときも同様。
 * A = 1 とすると、条件から 1 + B > B となり、これは常に成り立つ。B = 1 のときも同様。
 * A >= 2 のとき
 * -> A > AB - B
 * -> A > B(A - 1)
 * -> 1 > B(A - 1) / A
 * これを満たす、 A (>=2), B (>2) のペアは存在しない。
 */

$a = check($a);
$b = check($b);

if (($a == 0) && ($b == 0)) {
  echo "E".PHP_EOL;
} else if (($a == 2) && ($b == 2)) {
  echo "E".PHP_EOL;
}
else if (($a * $b) == 0) {
  echo "S".PHP_EOL;
}
else if (($a == 1) || ($b == 1)) {
  echo "S".PHP_EOL;
}
else {
  echo "P".PHP_EOL;
}

function check($i)
{
  if (strlen($i) > 2) {
    // 2桁以上の場合はどれでも同じなので、計算可能な数値に置き換え
    return (int) 10;
  }
  else {
    // 1桁の数値はそのまま返す
    return (int) $i;
  }
}
0