結果

問題 No.112 ややこしい鶴亀算
ユーザー konabekonabe
提出日時 2018-07-02 19:40:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 215 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 10,724 KB
実行使用メモリ 8,020 KB
最終ジャッジ日時 2023-09-13 17:00:32
合計ジャッジ時間 1,725 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 15 ms
7,760 KB
testcase_02 WA -
testcase_03 AC 15 ms
7,876 KB
testcase_04 WA -
testcase_05 AC 15 ms
7,804 KB
testcase_06 AC 14 ms
7,848 KB
testcase_07 AC 14 ms
7,856 KB
testcase_08 AC 15 ms
7,828 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 15 ms
7,824 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 15 ms
7,844 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 15 ms
7,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
a = [int(i) for i in input().split()]
s = sum(a)//2
r = {"tsuru": 0, "kame": 0}
for ai in a:
    if s - ai == 2:
        r["tsuru"] += 1
    else:
        r["kame"] += 1
print(r["tsuru"], r["kame"])
0