結果
問題 | No.2562 数字探しゲーム(緑以下コンver.) |
ユーザー | srjywrdnprkt |
提出日時 | 2023-12-07 14:26:53 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 491 bytes |
コンパイル時間 | 2,211 ms |
コンパイル使用メモリ | 200,836 KB |
実行使用メモリ | 6,816 KB |
最終ジャッジ日時 | 2024-11-19 21:39:38 |
合計ジャッジ時間 | 3,196 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 25 ms
5,248 KB |
testcase_05 | AC | 25 ms
5,248 KB |
testcase_06 | AC | 24 ms
5,248 KB |
testcase_07 | AC | 24 ms
5,248 KB |
testcase_08 | AC | 25 ms
5,248 KB |
testcase_09 | AC | 25 ms
5,248 KB |
testcase_10 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; void solve(){ ll M, d, K; const ll inf = 2e18; string S=""; cin >> M; for (int i=1; i<=9; i++){ cin >> d; S += string(d, char(i+'0')); } S += string(9, '0'); K = stoll(S); cout << (K+M-1)/M*M << endl; } int main(){ cin.tie(nullptr); ios_base::sync_with_stdio(false); int T; cin >> T; while(T){ T--; solve(); } return 0; }