結果

問題 No.1850 Rewrite Product
ユーザー MitarushiMitarushi
提出日時 2022-02-24 22:53:31
言語 Nim
(2.0.2)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 494 bytes
コンパイル時間 1,820 ms
コンパイル使用メモリ 65,024 KB
最終ジャッジ日時 2024-07-02 14:07:36
合計ジャッジ時間 2,633 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
/home/judge/data/code/Main.nim(6, 34) Error: type mismatch: got 'seq[int]' for 'map(split(readLine(stdin), {' ', '\t', '\v', '\r', '\n', '\f'}, -1), parseInt)' but expected 'tuple'

ソースコード

diff #

import strutils, sequtils


proc solve() =
    var x, y: int
    (x, y) = stdin.readLine.split.map parseInt

    assert 1 <= x and x <= 1000000000
    assert 1 <= y and y <= 1000000000

    if x <= 4 and y <= x or x >= 5:
        echo "Yes"
    else:
        echo "No"

proc last_check() =
    try:
        let x = stdin.readLine
        assert x == ""
    except EOFError:
        return

let t = stdin.readLine.parseInt
assert 1 <= t and t <= 200000
for _ in 0..<t:
    solve()

last_check()
0