結果

問題 No.1586 Equal Array
ユーザー kamomekamome
提出日時 2021-07-08 22:37:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 102 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 87,048 KB
実行使用メモリ 91,176 KB
最終ジャッジ日時 2023-09-14 05:12:59
合計ジャッジ時間 3,378 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 70 ms
71,172 KB
testcase_03 AC 64 ms
71,260 KB
testcase_04 AC 89 ms
88,544 KB
testcase_05 AC 79 ms
88,348 KB
testcase_06 AC 83 ms
90,588 KB
testcase_07 WA -
testcase_08 AC 87 ms
90,668 KB
testcase_09 WA -
testcase_10 AC 88 ms
90,672 KB
testcase_11 AC 66 ms
71,280 KB
testcase_12 AC 66 ms
71,252 KB
testcase_13 WA -
testcase_14 AC 84 ms
90,844 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 66 ms
71,248 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 64 ms
71,264 KB
testcase_21 WA -
testcase_22 AC 62 ms
71,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
if sum(A)%3==0:
    print("Yes")
else:
    print("No")
0