結果
問題 | No.1131 Deviation Score |
ユーザー | naimonon77 |
提出日時 | 2024-01-19 23:39:12 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,011 bytes |
コンパイル時間 | 121 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 46,716 KB |
最終ジャッジ日時 | 2024-09-28 05:08:54 |
合計ジャッジ時間 | 14,311 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 476 ms
44,544 KB |
testcase_21 | AC | 462 ms
44,296 KB |
ソースコード
#!usr/bin/env python3 from collections import defaultdict, deque from heapq import heappush, heappop from itertools import permutations, accumulate import sys import math import bisect import numpy import re import os from math import inf import random import time import copy from decimal import * def LI(): return [int(x) for x in sys.stdin.readline().split()] def I(): return int(sys.stdin.readline()) def IR(n): return [I() for _ in range(n)] def LIR(n): return [LI() for _ in range(n)] def abp(a, b, c): if a: print(b) else: print(c) def yep(b): if b: print("Yes") else: print("No") def div_ceil(a, b): return -(-a // b) def eprint(*arg): if os.name == "nt": # windows print(*arg, file=sys.stderr) sys.setrecursionlimit(1000000) mod = 1000000007 MAX = 10**200 # # # n = I() x = LI() sum_v = sum(x) for i in range(n): child = sum_v - x[i] * n mother = 2 * n b = child // mother print(50 - b)