結果
| 問題 | No.369 足し間違い |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-05-13 22:23:30 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
AC
|
| 実行時間 | 64 ms / 2,000 ms |
| + 577µs | |
| コード長 | 304 bytes |
| 記録 | |
| コンパイル時間 | 65 ms |
| コンパイル使用メモリ | 81,408 KB |
| 実行使用メモリ | 82,432 KB |
| 最終ジャッジ日時 | 2026-07-18 06:11:34 |
| 合計ジャッジ時間 | 1,781 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 5 |
ソースコード
# coding: utf-8
from collections import defaultdict as dd
from collections import Counter
from collections import deque
from string import ascii_lowercase
def main():
N = input()
A = sum(int(x) for x in raw_input().split())
v = input()
print(A-v)
if __name__ == "__main__":
main()