結果
問題 | No.112 ややこしい鶴亀算 |
ユーザー | gorugo30 |
提出日時 | 2021-02-23 16:55:10 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 204 bytes |
コンパイル時間 | 256 ms |
コンパイル使用メモリ | 82,348 KB |
実行使用メモリ | 54,420 KB |
最終ジャッジ日時 | 2024-09-22 12:10:18 |
合計ジャッジ時間 | 2,123 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
52,308 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 36 ms
53,512 KB |
testcase_05 | AC | 35 ms
53,344 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 36 ms
52,340 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 35 ms
53,084 KB |
testcase_12 | WA | - |
testcase_13 | AC | 36 ms
52,540 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 35 ms
52,256 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 36 ms
52,148 KB |
testcase_23 | WA | - |
testcase_24 | AC | 36 ms
53,896 KB |
ソースコード
N = int(input()) A = list(map(int, input().split())) if max(A) == min(A): if sum(A) // (N - 1) == 4: print(N, 0) else: print(0, N) else: print(A.count(min(A)), A.count(max(A)))