結果

問題 No.3661 Grid Paint Game
コンテスト
ユーザー t5ugu
提出日時 2026-08-21 23:12:41
言語 PyPy3
(7.3.23)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
WA  
実行時間 -
コード長 255 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 260 ms
コンパイル使用メモリ 95,976 KB
実行使用メモリ 85,248 KB
最終ジャッジ日時 2026-08-30 13:02:44
合計ジャッジ時間 2,775 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

# 制約チェック
T = int(input())
assert 1 <= T and T <= 100000

for _ in range(T):
    line = list(map(int, input().split()))
    assert len(line) == 2
    H, W = line
    assert 1 <= H and H <= 1_000_000_000
    assert 1 <= W and W <= 1_000_000_000
0