Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
問題点
[1] メモリ制限が256MBになっている
judge.go
で設定されているメモリ制限が262144KiB(256 MiB)となっています。問題ページにはメモリは1024MBとあるのでジャッジと差があります。[2] メモリ制限を超えてもAC判定となる
プログラム実行時に実行エラーがでなければメモリ使用量の検証が行われないためACの判定が出る場合があります。
以下の提出ではメモリ使用量は1502MBであるのにも関わらずACが出ます。
提出リンク
また、
ulimit
の-m
は物理メモリの使用量制限のためスワップが含まれません。解決策
judge.go
で設定されているメモリ制限を1024 MiBに変更しました。終了ステータスに関わらずメモリ使用量を確認するように変更しました。
ulimit
でのメモリ制限を-m
から-v
へ変更しました。-v
はバーチャルメモリ制限であり、物理メモリ+スワップメモリで計算されます。また、メモリ制限は5MiBほど余裕を持たせて制限するようにしていますが、終了ステータスに関わらず使用量を確認するため問題ありません。