結果

問題 No.112 ややこしい鶴亀算
ユーザー H20H20
提出日時 2021-11-24 14:18:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 174 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 59,132 KB
最終ジャッジ日時 2024-06-26 23:05:44
合計ジャッジ時間 2,392 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,284 KB
testcase_01 AC 40 ms
57,328 KB
testcase_02 AC 41 ms
58,296 KB
testcase_03 AC 39 ms
58,948 KB
testcase_04 AC 40 ms
58,656 KB
testcase_05 AC 41 ms
58,132 KB
testcase_06 AC 40 ms
57,172 KB
testcase_07 AC 40 ms
57,980 KB
testcase_08 AC 40 ms
58,664 KB
testcase_09 AC 40 ms
57,768 KB
testcase_10 AC 41 ms
59,132 KB
testcase_11 AC 41 ms
58,376 KB
testcase_12 AC 40 ms
57,212 KB
testcase_13 AC 41 ms
58,124 KB
testcase_14 AC 41 ms
57,868 KB
testcase_15 AC 40 ms
57,652 KB
testcase_16 AC 40 ms
57,808 KB
testcase_17 AC 40 ms
57,964 KB
testcase_18 AC 41 ms
57,124 KB
testcase_19 AC 41 ms
58,360 KB
testcase_20 AC 40 ms
58,608 KB
testcase_21 AC 40 ms
58,240 KB
testcase_22 AC 41 ms
57,800 KB
testcase_23 AC 40 ms
58,516 KB
testcase_24 AC 39 ms
57,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
Y = list(map(int,input().split()))
S = sum(Y)//(N-1)
for i in range(0,51):
    for j in range(0,51):
        if i*2+j*4==S and i+j==N:
            print(i,j)
0