結果

問題 No.1013 〇マス進む
ユーザー hirono999hirono999
提出日時 2020-03-21 03:18:10
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,101 bytes
コンパイル時間 1,784 ms
コンパイル使用メモリ 168,468 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-12-16 06:57:23
合計ジャッジ時間 104,218 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
8,704 KB
testcase_02 AC 2 ms
9,216 KB
testcase_03 AC 7 ms
10,496 KB
testcase_04 AC 4 ms
10,496 KB
testcase_05 AC 8 ms
8,960 KB
testcase_06 AC 3 ms
10,496 KB
testcase_07 AC 8 ms
8,576 KB
testcase_08 AC 10 ms
8,576 KB
testcase_09 AC 3 ms
10,496 KB
testcase_10 AC 2 ms
10,496 KB
testcase_11 AC 6 ms
8,960 KB
testcase_12 AC 2 ms
8,704 KB
testcase_13 AC 61 ms
10,496 KB
testcase_14 AC 1,066 ms
9,088 KB
testcase_15 AC 717 ms
10,624 KB
testcase_16 AC 1,023 ms
8,576 KB
testcase_17 AC 433 ms
10,624 KB
testcase_18 AC 1,134 ms
8,704 KB
testcase_19 AC 85 ms
10,624 KB
testcase_20 AC 314 ms
10,276 KB
testcase_21 AC 804 ms
8,576 KB
testcase_22 AC 483 ms
10,532 KB
testcase_23 AC 129 ms
8,704 KB
testcase_24 AC 1,387 ms
10,400 KB
testcase_25 AC 1,085 ms
8,960 KB
testcase_26 AC 361 ms
10,152 KB
testcase_27 AC 246 ms
8,576 KB
testcase_28 AC 36 ms
10,404 KB
testcase_29 AC 374 ms
8,960 KB
testcase_30 AC 664 ms
10,536 KB
testcase_31 AC 1,037 ms
8,832 KB
testcase_32 AC 609 ms
8,960 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 AC 310 ms
5,248 KB
testcase_62 AC 23 ms
5,248 KB
testcase_63 AC 2 ms
5,248 KB
testcase_64 AC 2 ms
9,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (ll i = 0; i < (n); ++i)
#define rep1(i, n) for (ll i = 1; i <= (n); ++i)
#define rrep(i, n) for (ll i = (n - 1); i >= 0; --i)
#define ALL(obj) (obj).begin(), (obj).end()
#define pb push_back
#define to_s to_string
#define len(v) (ll)v.size()
#define UNIQUE(v) v.erase(unique(v.begin(), v.end()), v.end())
#define print(x) cout << (x) << '\n'
#define debug(x) cout << #x << ": " << (x) << '\n'
using namespace std;
using ll = long long;
typedef pair<ll, ll> P;
ll MOD = 1e9 + 7;
ll devc(ll x, ll y) { return 1 + (x - 1) / y; }

int main()
{
    cin.tie(0);
    ios::sync_with_stdio(0);
    cout << fixed << setprecision(20);

    ll N, K;
    cin >> N >> K;
    vector<ll> P(N + 5);
    rep1(i, N) cin >> P[i];

    rep1(i,N){
        ll now = i;
        ll ans = 0;
        rep(j, K){
            now += P[now % N == 0 ? N : now % N];
            if(P[now % N == 0 ? N : now % N] == N){
                ans = now + (K-j-1)*N;
                break;
            }
        }
        if(ans == 0) print(now);
        else print(ans);
    }

    return 0;
}
0