結果

問題 No.1219 Mancala Combo
ユーザー tentententen
提出日時 2021-11-05 19:04:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 262 ms / 2,000 ms
コード長 1,393 bytes
コンパイル時間 2,225 ms
コンパイル使用メモリ 77,424 KB
実行使用メモリ 57,864 KB
最終ジャッジ日時 2024-11-06 09:55:41
合計ジャッジ時間 7,145 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,252 KB
testcase_01 AC 55 ms
50,356 KB
testcase_02 AC 56 ms
50,452 KB
testcase_03 AC 55 ms
50,320 KB
testcase_04 AC 57 ms
50,412 KB
testcase_05 AC 56 ms
50,264 KB
testcase_06 AC 56 ms
50,284 KB
testcase_07 AC 56 ms
50,256 KB
testcase_08 AC 55 ms
50,484 KB
testcase_09 AC 55 ms
50,396 KB
testcase_10 AC 56 ms
49,952 KB
testcase_11 AC 56 ms
50,404 KB
testcase_12 AC 56 ms
50,408 KB
testcase_13 AC 55 ms
50,308 KB
testcase_14 AC 55 ms
50,168 KB
testcase_15 AC 55 ms
50,504 KB
testcase_16 AC 55 ms
50,420 KB
testcase_17 AC 199 ms
55,720 KB
testcase_18 AC 217 ms
55,588 KB
testcase_19 AC 191 ms
54,884 KB
testcase_20 AC 202 ms
55,620 KB
testcase_21 AC 213 ms
56,064 KB
testcase_22 AC 205 ms
55,692 KB
testcase_23 AC 220 ms
55,516 KB
testcase_24 AC 195 ms
55,492 KB
testcase_25 AC 191 ms
54,880 KB
testcase_26 AC 216 ms
55,480 KB
testcase_27 AC 243 ms
57,864 KB
testcase_28 AC 262 ms
57,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] values = new int[n + 1];
        for (int i = 1; i <= n; i++) {
            values[i] = sc.nextInt();
        }
        long count = 0;
        for (int i = n; i >= 1; i--) {
            if (values[i] > i || (values[i] + count) % i > 0) {
                System.out.println("No");
                return;
            }
            count += (values[i] + count) / i;
        }
        System.out.println("Yes");
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String nextLine() throws Exception {
        return br.readLine();
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0