結果
| 問題 | No.3389 k-Days Later |
| コンテスト | |
| ユーザー |
tnakao0123
|
| 提出日時 | 2025-11-29 17:51:30 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 162 ms / 2,000 ms |
| コード長 | 840 bytes |
| コンパイル時間 | 469 ms |
| コンパイル使用メモリ | 41,964 KB |
| 実行使用メモリ | 7,716 KB |
| 最終ジャッジ日時 | 2025-11-29 17:51:44 |
| 合計ジャッジ時間 | 14,201 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 28 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:30:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
30 | scanf("%d", &n);
| ~~~~~^~~~~~~~~~
main.cpp:31:36: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
31 | for (int i = 0; i < n; i++) scanf("%d", ds + i);
| ~~~~~^~~~~~~~~~~~~~
main.cpp:36:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
36 | scanf("%d", &qn);
| ~~~~~^~~~~~~~~~~
main.cpp:40:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
40 | scanf("%lld%d%d%lld", &yi, &mi, &di, &ki);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
/* -*- coding: utf-8 -*-
*
* 3389.cc: No.3389 k-Days Later - yukicoder
*/
#include<cstdio>
#include<algorithm>
using namespace std;
/* constant */
const int MAX_N = 100000;
/* typedef */
using ll = long long;
/* global variables */
int ds[MAX_N];
ll dss[MAX_N + 1];
/* subroutines */
/* main */
int main() {
int n;
scanf("%d", &n);
for (int i = 0; i < n; i++) scanf("%d", ds + i);
for (int i = 0; i < n; i++) dss[i + 1] = dss[i] + ds[i];
int qn;
scanf("%d", &qn);
while (qn--) {
ll yi, ki;
int mi, di;
scanf("%lld%d%d%lld", &yi, &mi, &di, &ki);
ll doy = dss[mi - 1] + (di - 1) + ki;
ll ai = yi + doy / dss[n];
doy %= dss[n];
int bi = upper_bound(dss, dss + n + 1, doy) - dss - 1;
int ci = doy - dss[bi];
printf("%lld %d %d\n", ai, bi + 1, ci + 1);
}
return 0;
}
tnakao0123