結果

問題 No.722 100×100=1000
ユーザー kerotangkerotang
提出日時 2019-06-03 12:55:55
言語 PHP
(8.3.4)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 1,391 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 30,780 KB
実行使用メモリ 31,272 KB
最終ジャッジ日時 2024-06-09 11:08:09
合計ジャッジ時間 2,444 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
30,916 KB
testcase_01 AC 34 ms
31,268 KB
testcase_02 AC 34 ms
30,616 KB
testcase_03 AC 35 ms
30,944 KB
testcase_04 AC 36 ms
30,628 KB
testcase_05 AC 37 ms
30,744 KB
testcase_06 AC 37 ms
31,088 KB
testcase_07 AC 34 ms
31,164 KB
testcase_08 AC 34 ms
30,796 KB
testcase_09 AC 35 ms
31,088 KB
testcase_10 AC 36 ms
31,044 KB
testcase_11 AC 35 ms
30,668 KB
testcase_12 AC 36 ms
30,984 KB
testcase_13 AC 35 ms
31,024 KB
testcase_14 AC 36 ms
31,036 KB
testcase_15 AC 36 ms
30,796 KB
testcase_16 AC 36 ms
30,896 KB
testcase_17 AC 36 ms
30,876 KB
testcase_18 AC 36 ms
30,816 KB
testcase_19 AC 36 ms
31,172 KB
testcase_20 AC 37 ms
30,652 KB
testcase_21 AC 36 ms
30,808 KB
testcase_22 AC 38 ms
31,184 KB
testcase_23 AC 37 ms
31,056 KB
testcase_24 AC 39 ms
30,968 KB
testcase_25 AC 37 ms
31,272 KB
testcase_26 AC 37 ms
31,108 KB
testcase_27 AC 36 ms
30,952 KB
testcase_28 AC 37 ms
31,064 KB
testcase_29 AC 36 ms
31,236 KB
testcase_30 AC 35 ms
31,096 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

class Scanner
{
    private $arr = [];
    private $count = 0;
    private $pointer = 0;

    /**
     * @return mixed
     */
    public function next() {
        if ($this->pointer >= $this->count) {
            $str = trim(fgets(STDIN));
            $this->arr = explode(' ', $str);
            $this->count = count($this->arr);
            $this->pointer = 0;
        }
        $result = $this->arr[$this->pointer];
        $this->pointer++;
        return $result;
    }

    /**
     * @return bool
     */
    public function hasNext() {
        return $this->pointer < $this->count;
    }

    /**
     * @return int
     */
    public function nextInt() {
        return (int)$this->next();
    }

    /**
     * @return float
     */
    public function nextDouble() {
        return (double)$this->next();
    }
}

function dentaku($A, $B)
{
    $result = $A * $B;
    if ($result < -99999999 || 99999999 < $result) {
        $result = 'E';
    }
    
    return $result;
}

// 初期化
$sc = new Scanner();
$yukiList = [];
for ($i = 1; $i <= 9; $i++) {
    for ($n = 2; $n < 15; $n++) {
        $yukiList[] = $i * pow(10, $n);
        $yukiList[] = -$i * pow(10, $n);
    }
}

$A = $sc->nextInt();
$B = $sc->nextInt();
if (in_array($A, $yukiList) && in_array($B, $yukiList)) {
    $result = ($A * $B) / 10;
} else {
    $result = dentaku($A, $B);
}


echo $result . "\n";
0