結果
問題 |
No.112 ややこしい鶴亀算
|
ユーザー |
|
提出日時 | 2023-07-23 13:07:04 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 26 ms / 5,000 ms |
コード長 | 355 bytes |
コンパイル時間 | 2,123 ms |
コンパイル使用メモリ | 192,748 KB |
最終ジャッジ日時 | 2025-02-15 18:29:47 |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 23 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define fi first #define se second int main(){ int n; cin >> n; int sum = 0; for(int i = 0; i < n; i++){ int a; cin >> a; sum += a; } sum /= (n - 1); int ans = 2 * n - sum / 2; cout << ans << " " << n - ans << endl; return 0; }