結果
問題 | No.2112 All 2x2 are Equal |
ユーザー | tamato |
提出日時 | 2022-10-28 22:30:31 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 633 bytes |
コンパイル時間 | 229 ms |
コンパイル使用メモリ | 82,832 KB |
実行使用メモリ | 84,912 KB |
最終ジャッジ日時 | 2024-07-06 01:42:29 |
合計ジャッジ時間 | 6,830 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
52,524 KB |
testcase_01 | AC | 35 ms
52,684 KB |
testcase_02 | AC | 49 ms
70,468 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 134 ms
84,264 KB |
testcase_07 | AC | 82 ms
78,576 KB |
testcase_08 | AC | 122 ms
83,004 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 78 ms
78,068 KB |
testcase_12 | WA | - |
testcase_13 | AC | 125 ms
83,104 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 125 ms
82,436 KB |
testcase_18 | AC | 50 ms
68,356 KB |
testcase_19 | AC | 66 ms
76,304 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 50 ms
68,876 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 60 ms
76,588 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 64 ms
76,804 KB |
testcase_30 | AC | 87 ms
78,760 KB |
testcase_31 | AC | 107 ms
80,788 KB |
testcase_32 | AC | 149 ms
84,840 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 144 ms
84,836 KB |
ソースコード
mod = 998244353 def main(): import sys input = sys.stdin.readline H, W = map(int, input().split()) print("Yes") ans = [[0] * W for _ in range(H)] for h in range(H): for w in range(W): if (h + w) & 1: ans[h][w] = H * W - (h * W + w) else: ans[h][w] = h * W + w + 1 for h in range(H): print(*ans[h]) S = ans[0][0] + ans[0][1] + ans[1][0] + ans[1][1] for h in range(H - 1): for w in range(W - 1): assert ans[h][w] + ans[h+1][w] + ans[h][w+1] + ans[h+1][w+1] == S if __name__ == '__main__': main()