結果

問題 No.2920 Blood Type
ユーザー anago-pieanago-pie
提出日時 2024-10-26 04:33:35
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 497 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 41,076 KB
最終ジャッジ日時 2024-10-26 04:33:43
合計ジャッジ時間 4,278 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
38,784 KB
testcase_01 AC 65 ms
39,168 KB
testcase_02 AC 61 ms
39,168 KB
testcase_03 AC 60 ms
39,296 KB
testcase_04 AC 60 ms
39,168 KB
testcase_05 AC 61 ms
39,168 KB
testcase_06 AC 63 ms
41,076 KB
testcase_07 AC 62 ms
39,424 KB
testcase_08 AC 63 ms
39,168 KB
testcase_09 AC 62 ms
39,168 KB
testcase_10 AC 63 ms
39,040 KB
testcase_11 AC 62 ms
39,168 KB
testcase_12 AC 62 ms
39,168 KB
testcase_13 AC 63 ms
39,168 KB
testcase_14 AC 63 ms
39,040 KB
testcase_15 AC 61 ms
39,168 KB
testcase_16 AC 61 ms
39,040 KB
testcase_17 AC 62 ms
39,040 KB
testcase_18 AC 61 ms
39,424 KB
testcase_19 AC 62 ms
38,912 KB
testcase_20 AC 62 ms
39,040 KB
testcase_21 AC 61 ms
39,040 KB
testcase_22 AC 62 ms
39,296 KB
testcase_23 AC 61 ms
39,040 KB
testcase_24 AC 62 ms
39,168 KB
testcase_25 AC 60 ms
39,040 KB
testcase_26 AC 64 ms
39,040 KB
testcase_27 AC 63 ms
39,040 KB
testcase_28 AC 60 ms
39,040 KB
testcase_29 AC 85 ms
39,040 KB
testcase_30 AC 62 ms
39,296 KB
testcase_31 AC 62 ms
39,040 KB
testcase_32 AC 62 ms
39,296 KB
testcase_33 AC 62 ms
39,168 KB
testcase_34 AC 62 ms
39,040 KB
testcase_35 AC 62 ms
39,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function Main(INPUT){
  const input = INPUT.split("\n");
  const [p1,p2]=[input[0],input[1]];
  let [a,b,ab,o]=[0,0,0,0];
  for(const u of p1){
    for(const v of p2){
      let c=[u,v].sort().join("");
      if(c=="AA" ||c== "AO"){
        a+=25;
      }
      if(c=="BB"||c=="BO"){
        b+=25;
      }
      if(c=="AB"){
        ab+=25;
      }
      if(c=="OO"){
        o+=25;
      }
    }
  }

  console.log([a,b,ab,o].join(" "));
}
Main(require("fs").readFileSync("/dev/stdin", "utf8"));
0