結果
問題 | No.2306 [Cherry 5th Tune C] ウソツキタマシイ |
ユーザー |
![]() |
提出日時 | 2025-03-20 21:07:00 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 139 ms / 2,000 ms |
コード長 | 1,129 bytes |
コンパイル時間 | 275 ms |
コンパイル使用メモリ | 82,360 KB |
実行使用メモリ | 133,456 KB |
最終ジャッジ日時 | 2025-03-20 21:07:12 |
合計ジャッジ時間 | 5,569 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 30 |
ソースコード
def main():import sysinput = sys.stdin.read().split()ptr = 0N = int(input[ptr])ptr += 1M = int(input[ptr])ptr += 1A = list(map(int, input[ptr:ptr+M]))ptr += Mcount = [0] * (M + 1)soul_power = 0for i in range(1, M + 1):count[i] = A[i - 1]soul_power += count[i] ** 2Q = int(input[ptr])ptr += 1for _ in range(Q):C = int(input[ptr])ptr += 1K = int(input[ptr])ptr += 1D = int(input[ptr])ptr += 1x = count[C]y = count[D]# Calculate changes for Cold_c = x ** 2new_c = x - Knew_c_sq = new_c ** 2delta_c = new_c_sq - old_c# Calculate changes for Dold_d = y ** 2new_d = y + Knew_d_sq = new_d ** 2delta_d = new_d_sq - old_d# Update soul powersoul_power += delta_c + delta_d# Update countscount[C] = new_ccount[D] = new_dprint(soul_power)if __name__ == '__main__':main()