結果

問題 No.1470 Mex Sum
ユーザー KFrom40KFrom40
提出日時 2021-04-15 21:49:40
言語 PHP
(8.3.4)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 759 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 32,276 KB
実行使用メモリ 39,640 KB
最終ジャッジ日時 2024-07-02 06:03:02
合計ジャッジ時間 4,911 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
30,964 KB
testcase_01 AC 40 ms
31,392 KB
testcase_02 AC 45 ms
31,756 KB
testcase_03 AC 47 ms
31,628 KB
testcase_04 AC 44 ms
31,700 KB
testcase_05 AC 43 ms
31,884 KB
testcase_06 AC 44 ms
31,756 KB
testcase_07 AC 43 ms
31,568 KB
testcase_08 AC 44 ms
31,760 KB
testcase_09 AC 44 ms
32,012 KB
testcase_10 AC 43 ms
31,756 KB
testcase_11 AC 43 ms
31,760 KB
testcase_12 AC 67 ms
39,256 KB
testcase_13 AC 65 ms
38,996 KB
testcase_14 AC 67 ms
39,124 KB
testcase_15 AC 67 ms
39,256 KB
testcase_16 AC 65 ms
39,124 KB
testcase_17 AC 65 ms
38,996 KB
testcase_18 AC 66 ms
38,996 KB
testcase_19 AC 66 ms
39,128 KB
testcase_20 AC 65 ms
38,996 KB
testcase_21 AC 66 ms
39,384 KB
testcase_22 AC 67 ms
39,508 KB
testcase_23 AC 67 ms
39,128 KB
testcase_24 AC 67 ms
39,252 KB
testcase_25 AC 67 ms
39,380 KB
testcase_26 AC 67 ms
39,512 KB
testcase_27 AC 67 ms
39,124 KB
testcase_28 AC 66 ms
39,640 KB
testcase_29 AC 65 ms
39,512 KB
testcase_30 AC 67 ms
39,512 KB
testcase_31 AC 67 ms
39,256 KB
testcase_32 AC 66 ms
38,996 KB
testcase_33 AC 66 ms
39,128 KB
testcase_34 AC 67 ms
39,508 KB
testcase_35 AC 65 ms
39,508 KB
testcase_36 AC 69 ms
39,252 KB
testcase_37 AC 60 ms
38,312 KB
testcase_38 AC 66 ms
38,184 KB
testcase_39 AC 61 ms
38,188 KB
testcase_40 AC 63 ms
38,184 KB
testcase_41 AC 64 ms
38,440 KB
testcase_42 AC 63 ms
38,184 KB
testcase_43 AC 62 ms
38,184 KB
testcase_44 AC 62 ms
38,184 KB
testcase_45 AC 65 ms
38,316 KB
testcase_46 AC 62 ms
37,932 KB
testcase_47 AC 62 ms
38,188 KB
testcase_48 AC 64 ms
38,060 KB
testcase_49 AC 63 ms
38,056 KB
testcase_50 AC 62 ms
38,056 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
//[$n,$m] = array_map('intval', explode(' ', trim(fgets(STDIN))));
[$n] = array_map('intval', explode(' ', trim(fgets(STDIN))));
$a = array_map('intval', explode(' ', trim(fgets(STDIN))));
//[$s,$t] = explode(' ', trim(fgets(STDIN)));
//[$s] = explode(' ', trim(fgets(STDIN)));
//$s = explode(' ', trim(fgets(STDIN)));
//function decr($v){return --$v;}
//alpha='abcdefghijklmnopqrstuvwxyz';

$one = 0;
$two = 0;
for($i=0;$i<$n;$i++){
    if($a[$i] == 1) $one ++;
    else if($a[$i] == 2) $two ++;
}

if($one == 0){
    echo $n * ($n-1) / 2;
    exit;
}

$other = $n - $one - $two;
$ans = $other*($other-1)/2;
$ans += $one * ($one-1)/2 * 2;
$ans += $other * $one * 2;
$ans += $one * $two * 3;
$ans += $other * $two;
$ans += $two * ($two-1)/2;

echo $ans;
0