結果

問題 No.4 おもりと天秤
ユーザー StarMatyanStarMatyan
提出日時 2018-07-22 17:56:53
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 748 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-12-26 05:16:10
合計ジャッジ時間 2,290 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,496 KB
testcase_01 AC 40 ms
10,624 KB
testcase_02 AC 34 ms
10,496 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 34 ms
10,624 KB
testcase_06 AC 34 ms
10,752 KB
testcase_07 AC 35 ms
10,624 KB
testcase_08 AC 36 ms
10,624 KB
testcase_09 AC 36 ms
10,496 KB
testcase_10 WA -
testcase_11 AC 36 ms
10,496 KB
testcase_12 AC 36 ms
10,624 KB
testcase_13 AC 33 ms
10,496 KB
testcase_14 AC 37 ms
10,624 KB
testcase_15 AC 38 ms
10,496 KB
testcase_16 WA -
testcase_17 AC 36 ms
10,496 KB
testcase_18 AC 36 ms
10,624 KB
testcase_19 AC 35 ms
10,496 KB
testcase_20 AC 34 ms
10,496 KB
testcase_21 AC 35 ms
10,496 KB
testcase_22 AC 37 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Ndata = int(input());
itiran = input();
itirandata = itiran.split(" ");
itirannumdata = sorted(itirandata,key= int);
sumtmp = 0;
results = 0;
result = "";
kanren = 0;

for indexer in range(0,Ndata):
	sumtmp = sumtmp + int(itirannumdata[indexer]);


if sumtmp % 2 == 0:
    sumtmp = int(sumtmp / 2);
    firstkansu = Ndata -1;
    while firstkansu >= 0:
        kanren = int(itirannumdata[firstkansu]);
        results = results + kanren;
        if results > sumtmp:
            results = results - kanren;
            
        if firstkansu == 0 and results == sumtmp:
            result = "possible";
        else:
            result = "impossible";
            
        firstkansu = firstkansu - 1;
else:
	result = "impossible";
	
print(result);
0