結果

問題 No.1406 Test
ユーザー convexineqconvexineq
提出日時 2021-02-27 06:01:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 171 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 53,524 KB
最終ジャッジ日時 2024-10-02 16:58:26
合計ジャッジ時間 1,983 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,420 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 38 ms
52,316 KB
testcase_03 AC 38 ms
52,700 KB
testcase_04 AC 39 ms
52,372 KB
testcase_05 AC 39 ms
52,820 KB
testcase_06 AC 39 ms
52,532 KB
testcase_07 AC 38 ms
52,736 KB
testcase_08 AC 38 ms
52,872 KB
testcase_09 AC 39 ms
52,236 KB
testcase_10 AC 39 ms
52,636 KB
testcase_11 AC 39 ms
53,440 KB
testcase_12 AC 39 ms
52,420 KB
testcase_13 AC 37 ms
53,352 KB
testcase_14 AC 39 ms
52,908 KB
testcase_15 AC 38 ms
52,348 KB
testcase_16 AC 38 ms
53,088 KB
testcase_17 AC 38 ms
52,080 KB
testcase_18 AC 38 ms
52,160 KB
testcase_19 AC 38 ms
52,808 KB
testcase_20 AC 39 ms
53,524 KB
testcase_21 AC 38 ms
52,232 KB
testcase_22 AC 39 ms
52,704 KB
testcase_23 AC 38 ms
52,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n==1:
    print(101)
    exit()
*a, = map(int,input().split())
s = sum(a)
ans = 0
for i in range(101):
    if (s+i)%n == 0:
        ans += 1
print(ans)
0