結果

問題 No.112 ややこしい鶴亀算
ユーザー rlangevinrlangevin
提出日時 2024-10-14 00:28:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 153 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 53,604 KB
最終ジャッジ日時 2024-10-14 00:28:26
合計ジャッジ時間 2,039 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,424 KB
testcase_01 AC 38 ms
52,428 KB
testcase_02 AC 38 ms
52,564 KB
testcase_03 AC 39 ms
53,092 KB
testcase_04 AC 40 ms
51,692 KB
testcase_05 WA -
testcase_06 AC 40 ms
51,868 KB
testcase_07 AC 39 ms
53,604 KB
testcase_08 WA -
testcase_09 AC 41 ms
51,960 KB
testcase_10 AC 38 ms
51,812 KB
testcase_11 AC 38 ms
51,904 KB
testcase_12 AC 38 ms
52,776 KB
testcase_13 WA -
testcase_14 AC 39 ms
52,328 KB
testcase_15 AC 39 ms
52,972 KB
testcase_16 AC 39 ms
52,288 KB
testcase_17 AC 39 ms
52,344 KB
testcase_18 AC 40 ms
52,240 KB
testcase_19 WA -
testcase_20 AC 39 ms
52,496 KB
testcase_21 AC 39 ms
52,088 KB
testcase_22 AC 38 ms
53,092 KB
testcase_23 AC 38 ms
52,432 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
ma = max(A)
ans = [0, 0]
for a in A:
	if ma - a == 0:
		ans[0] += 1
	else:
		ans[1] += 1
print(*ans)
0