結果
| 問題 | No.2663 Zero-Sum Submatrices |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-03-08 21:21:03 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 77 ms / 2,000 ms |
| + 75µs | |
| コード長 | 96 bytes |
| 記録 | |
| コンパイル時間 | 247 ms |
| コンパイル使用メモリ | 95,952 KB |
| 実行使用メモリ | 84,096 KB |
| 最終ジャッジ日時 | 2026-09-06 05:46:18 |
| 合計ジャッジ時間 | 4,430 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 31 |
ソースコード
n,m=map(int,input().split()) n=2**n m=2**m for i in range(n): print(*[m*i+j for j in range(m)])