Submission #9867256


Source Code Expand

var input = require("fs").readFileSync("/dev/stdin", "utf8").trim().split("\n");
var obj = {
  "list" : input,
  "index" : 0,
  "max" : input.length,
  "next" : function(){
    if(!this.hasNext()){throw "NoSuchElementException:次に要素は無いよ";}
    var returnObj = this.list[this.index];
    this.index++;
    return returnObj;
  },
  "hasNext" : function(){return (this.index < this.max);}
}
Main();
function next(){return obj.next();}
function hasNext(){return obj.hasNext();}
function myout(t){console.log(t);}//standard output
function myerr(t){console.error(t);}//standard error
//[no]要素の扱い。数値型
//不明値、異常時:引数そのまま返す 1:数値へ変換
//2:半角SPで分割 4:半角SPで分割し、数値配列へ
//6:1文字で分割  7:1文字で分割し、数値配列へ
//8:半角SPで結合 9:改行で結合 0:文字なしで結合
function myconv(i,no){try{switch(no){case 1:return parseInt(i);case 2:return i.split(" ");case 4:return i.split(" ").map((a)=>Number(a));case 6:return i.split("");case 7:return i.split("").map((a)=>Number(a));case 8:return i.join(" ");case 9:return i.join("\n");case 0:return i.join("");default:return i;}}catch(e){return i;}}
function Main(){
  var one = myconv(next(),4);
  var X = Math.max.apply(null,one);
  var Y = Math.min.apply(null,one);
  if(X / Y == 3){
     myout("Yes");
    return;
  }
  if(Y >= 4){
     var tmp = Math.floor(Y / 4);
    Y %= 4;
    X -= (tmp * 4);
    if(X / Y == 3 || (X == 0 && Y == 0)){
      myout("Yes");
    }else{
      myout("No");
    }
  }else{
    myout("No");
  }
  
}

Submission Info

Submission Time
Task B - Colored Balls
User watarimaycry2
Language JavaScript (node.js v5.12)
Score 0
Code Size 1642 Byte
Status WA
Exec Time 52 ms
Memory 7372 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 200
Status
AC × 3
AC × 15
WA × 4
Set Name Test Cases
Sample s1.txt, s2.txt, s3.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, s1.txt, s2.txt, s3.txt
Case Name Status Exec Time Memory
01.txt AC 52 ms 7372 KB
02.txt AC 52 ms 7372 KB
03.txt AC 52 ms 7372 KB
04.txt WA 52 ms 7372 KB
05.txt AC 52 ms 7372 KB
06.txt WA 52 ms 7372 KB
07.txt AC 52 ms 7372 KB
08.txt WA 51 ms 7372 KB
09.txt AC 52 ms 7372 KB
10.txt WA 52 ms 7372 KB
11.txt AC 52 ms 7372 KB
12.txt AC 52 ms 7372 KB
13.txt AC 52 ms 7372 KB
14.txt AC 52 ms 7372 KB
15.txt AC 52 ms 7372 KB
16.txt AC 51 ms 7372 KB
s1.txt AC 52 ms 7372 KB
s2.txt AC 52 ms 7372 KB
s3.txt AC 52 ms 7372 KB