Submission #70410363


Source Code Expand

const inputText = await Deno.readTextFile("/dev/stdin");
const input = inputText.trim().split("\n").map(row => row.split(" "));
(() => {
    // 処理
    const [N, M] = input[0].map(n => +n);
    for (let i = 1; i <= N; i++) {
        console.log((N <= M) ? "OK" : "Too Many Request");
    }
})();

Submission Info

Submission Time
Task A - Too Many Requests
User AXT_AyaKoto
Language JavaScript (Deno 1.35.1)
Score 0
Code Size 306 Byte
Status WA
Exec Time 65 ms
Memory 44204 KiB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 100
Status
AC × 1
WA × 1
AC × 9
WA × 6
Set Name Test Cases
Sample example_00.txt, example_01.txt
All example_00.txt, example_01.txt, hand_00.txt, hand_01.txt, hand_02.txt, hand_03.txt, hand_04.txt, hand_05.txt, random_00.txt, random_01.txt, random_02.txt, random_03.txt, random_04.txt, random_05.txt, random_06.txt
Case Name Status Exec Time Memory
example_00.txt WA 65 ms 43372 KiB
example_01.txt AC 65 ms 43084 KiB
hand_00.txt AC 63 ms 43464 KiB
hand_01.txt AC 62 ms 44204 KiB
hand_02.txt WA 62 ms 43200 KiB
hand_03.txt AC 63 ms 43232 KiB
hand_04.txt WA 65 ms 43344 KiB
hand_05.txt AC 65 ms 43692 KiB
random_00.txt AC 65 ms 43068 KiB
random_01.txt AC 65 ms 43488 KiB
random_02.txt WA 64 ms 43192 KiB
random_03.txt WA 65 ms 43712 KiB
random_04.txt WA 64 ms 43344 KiB
random_05.txt AC 64 ms 43272 KiB
random_06.txt AC 64 ms 43596 KiB