結果

問題 No.1013 〇マス進む
ユーザー hirono999hirono999
提出日時 2020-03-21 03:18:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,101 bytes
コンパイル時間 1,761 ms
コンパイル使用メモリ 168,472 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-05-09 16:28:16
合計ジャッジ時間 20,997 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
8,704 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 7 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 8 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 9 ms
5,376 KB
testcase_08 AC 9 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 7 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 62 ms
5,376 KB
testcase_14 AC 1,053 ms
5,376 KB
testcase_15 AC 765 ms
5,376 KB
testcase_16 AC 1,010 ms
5,376 KB
testcase_17 AC 434 ms
5,376 KB
testcase_18 AC 1,117 ms
5,376 KB
testcase_19 AC 84 ms
5,376 KB
testcase_20 AC 321 ms
5,376 KB
testcase_21 AC 805 ms
5,376 KB
testcase_22 AC 491 ms
5,376 KB
testcase_23 AC 127 ms
5,376 KB
testcase_24 AC 1,374 ms
5,376 KB
testcase_25 AC 1,086 ms
5,376 KB
testcase_26 AC 358 ms
5,376 KB
testcase_27 AC 243 ms
5,376 KB
testcase_28 AC 37 ms
5,376 KB
testcase_29 AC 368 ms
5,376 KB
testcase_30 AC 666 ms
5,376 KB
testcase_31 AC 1,035 ms
5,376 KB
testcase_32 AC 599 ms
5,376 KB
testcase_33 TLE -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
権限があれば一括ダウンロードができます

ソースコード

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