結果
| 問題 | No.3448 ABBBBBBBBC |
| コンテスト | |
| ユーザー |
tnakao0123
|
| 提出日時 | 2026-02-22 15:35:26 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,146 bytes |
| 記録 | |
| コンパイル時間 | 407 ms |
| コンパイル使用メモリ | 54,524 KB |
| 実行使用メモリ | 7,844 KB |
| 最終ジャッジ日時 | 2026-02-22 15:35:28 |
| 合計ジャッジ時間 | 2,015 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | WA * 4 |
ソースコード
/* -*- coding: utf-8 -*-
*
* 3448.cc: No.3448 ABBBBBBBBC - yukicoder
*/
#include<cstdio>
#include<algorithm>
using namespace std;
/* constant */
/* typedef */
using ll = long long;
/* global variables */
/* subroutines */
/* main */
int main() {
int tn;
scanf("%d", &tn);
while (tn--) {
int n;
ll k;
scanf("%d%lld", &n, &k);
k--;
bool f = true;
for (int a = 1; f && a < 10; a++)
for (int b = 0; f && b < 10; b++)
if (a != b) {
//printf(" a=%d, b=%d, k=%lld\n", a, b, k);
// c < b
int d0 = (a < b) ? b - 1 : b;
ll e0 = (ll)d0 * n;
if (k >= e0) k -= e0;
else {
int l = k / d0 + 1, r = k % d0, c = 0;
while (r > 0) {
if (c != a) r--;
c++;
}
printf("%d %d %d %d\n", l + 2, a, b, c);
f = false;
break;
}
// c > b
int d1 = (a > b) ? 9 - b - 1 : 9 - b;
ll e1 = (ll)d1 * n;
if (k >= e1) k -= e1;
else {
int l = n - k / d1, r = k % d1;
int c = b + 1;
while (r > 0) {
if (c != a) r--;
c++;
}
printf("%d %d %d %d\n", l + 2, a, b, c);
f = false;
}
}
}
return 0;
}
tnakao0123