結果
問題 |
No.112 ややこしい鶴亀算
|
ユーザー |
|
提出日時 | 2018-07-02 19:26:39 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 117 bytes |
コンパイル時間 | 258 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-01 01:36:11 |
合計ジャッジ時間 | 1,787 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 2 |
other | WA * 23 |
ソースコード
N = int(input()) a = [int(i) for i in input().split()] s = sum(a)//2 for ai in a: print(s - ai , end=" ") print()