結果
問題 | No.1338 Giant Class |
ユーザー | Theta |
提出日時 | 2022-10-14 17:38:21 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 478 bytes |
コンパイル時間 | 174 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 815,084 KB |
最終ジャッジ日時 | 2024-06-26 12:41:52 |
合計ジャッジ時間 | 12,839 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
10,624 KB |
testcase_01 | AC | 30 ms
10,624 KB |
testcase_02 | AC | 654 ms
14,720 KB |
testcase_03 | AC | 30 ms
10,624 KB |
testcase_04 | AC | 32 ms
10,752 KB |
testcase_05 | AC | 32 ms
10,752 KB |
testcase_06 | AC | 1,349 ms
359,280 KB |
testcase_07 | AC | 1,543 ms
360,792 KB |
testcase_08 | AC | 744 ms
122,496 KB |
testcase_09 | AC | 495 ms
43,776 KB |
testcase_10 | AC | 1,014 ms
126,392 KB |
testcase_11 | AC | 857 ms
316,104 KB |
testcase_12 | AC | 505 ms
14,336 KB |
testcase_13 | MLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
def main(): H, W, Q = map(int, input().split()) rest_sheets = H * W most_front_other_students = [H + 1 for _ in range(W)] for _ in range(Q): y, x = map(int, input().split()) if most_front_other_students[x - 1] < y: print(rest_sheets) else: rest_sheets -= (most_front_other_students[x - 1] - y) most_front_other_students[x - 1] = y print(rest_sheets) if __name__ == "__main__": main()