結果

問題 No.1374 Absolute Game
ユーザー tempura_pptempura_pp
提出日時 2019-03-24 03:58:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 397 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,648 KB
最終ジャッジ日時 2024-10-02 10:09:32
合計ジャッジ時間 2,948 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 52 ms
13,796 KB
testcase_09 AC 88 ms
18,748 KB
testcase_10 AC 96 ms
20,040 KB
testcase_11 AC 70 ms
16,416 KB
testcase_12 AC 54 ms
13,932 KB
testcase_13 AC 81 ms
17,860 KB
testcase_14 AC 110 ms
21,516 KB
testcase_15 AC 111 ms
21,520 KB
testcase_16 AC 111 ms
21,520 KB
testcase_17 AC 111 ms
21,512 KB
testcase_18 AC 112 ms
21,520 KB
testcase_19 AC 109 ms
21,648 KB
testcase_20 AC 56 ms
14,704 KB
testcase_21 AC 68 ms
16,068 KB
testcase_22 AC 106 ms
21,144 KB
testcase_23 AC 37 ms
11,776 KB
testcase_24 AC 41 ms
12,416 KB
testcase_25 AC 42 ms
12,540 KB
testcase_26 AC 52 ms
14,040 KB
testcase_27 AC 62 ms
15,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve() :
    n=int(input())
    if n<2 or n>100000 :
        print("waaaaaa")
    a = list(map(int, input().split()))
    if len(a) != n : 
        print("hogeeeeeee")
    for i in a : 
        if abs(i) >1000000000 :
            print("guaaaaaaa")
    a.sort()
    x=0
    y=0
    for i in range(n) :
        if i%2 == 0 : x+=a[i]
        else : y+=a[i]
    print(abs(abs(x)-abs(y)))
solve()
0