結果

問題 No.2655 Increasing Strides
ユーザー AsahiAsahi
提出日時 2024-03-01 22:31:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 7,167 bytes
コンパイル時間 2,596 ms
コンパイル使用メモリ 87,536 KB
実行使用メモリ 57,856 KB
最終ジャッジ日時 2024-03-01 22:31:20
合計ジャッジ時間 8,132 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
57,180 KB
testcase_01 AC 117 ms
57,196 KB
testcase_02 AC 119 ms
57,452 KB
testcase_03 AC 120 ms
56,112 KB
testcase_04 AC 119 ms
57,208 KB
testcase_05 AC 120 ms
57,192 KB
testcase_06 AC 124 ms
57,684 KB
testcase_07 AC 123 ms
55,500 KB
testcase_08 AC 126 ms
57,704 KB
testcase_09 AC 115 ms
56,816 KB
testcase_10 AC 120 ms
57,060 KB
testcase_11 AC 122 ms
57,700 KB
testcase_12 AC 124 ms
55,756 KB
testcase_13 AC 121 ms
57,196 KB
testcase_14 AC 119 ms
55,372 KB
testcase_15 AC 119 ms
55,884 KB
testcase_16 AC 118 ms
57,192 KB
testcase_17 AC 119 ms
57,180 KB
testcase_18 AC 121 ms
57,068 KB
testcase_19 AC 117 ms
56,800 KB
testcase_20 AC 120 ms
56,832 KB
testcase_21 AC 121 ms
57,312 KB
testcase_22 AC 115 ms
56,924 KB
testcase_23 AC 121 ms
57,340 KB
testcase_24 AC 125 ms
57,856 KB
testcase_25 AC 120 ms
57,316 KB
testcase_26 AC 111 ms
56,816 KB
testcase_27 AC 128 ms
57,716 KB
testcase_28 AC 115 ms
56,848 KB
testcase_29 AC 114 ms
56,812 KB
testcase_30 AC 113 ms
56,804 KB
testcase_31 AC 120 ms
57,200 KB
testcase_32 AC 119 ms
57,188 KB
testcase_33 AC 114 ms
56,796 KB
testcase_34 AC 113 ms
56,608 KB
testcase_35 AC 117 ms
56,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*; 
import java.io.*;
import java.math.*;
import java.util.stream.*;
import java.util.function.*;

class Main implements Runnable {

    public void solve() {   
        int n = in.nextInt();
        out.println(n % 8 == 0 || (n + 1) % 8 == 0 ? yes : no);
    }

    record p(int x , int y , int c , char d) { }

    public void exp(int k) {
    
        Queue<p> q = new ArrayDeque<>();
        q.add(new p(0 , 0, 0, 'U'));
        q.add(new p(0 , 0, 0, 'D'));
        q.add(new p(0 , 0, 0, 'L'));
        q.add(new p(0 , 0, 0, 'R'));
        int res = 0 ; 
        while(!q.isEmpty()) {
            var now = q.poll();
            if(now.c == k) {
                if(now.y == 0 && now.x == 0) res = now.c ;
                continue;
            }
            if(now.d == 'U' || now.d == 'D') {
                q.add(new p(now.x + (now.c + 1) , now.y , now.c + 1 , 'R'));
                q.add(new p(now.x - (now.c + 1) , now.y , now.c + 1 , 'L'));
            }
            else {
                q.add(new p(now.x  , now.y + (now.c + 1), now.c + 1 , 'D'));
                q.add(new p(now.x  , now.y - (now.c + 1), now.c + 1 , 'U'));
            }
        }
        out.println(k+" "+res);
    }

    public PrintWriter out = new PrintWriter(System.out);
    public Input in = new Input() ;
    public static final int  inf = (1  << 30);
    public static final long lnf = (1L << 60);
    public static final String yes = "Yes" , no  = "No" ;
    public static final int mod7 = 1000000007 , mod9 = 998244353 ;
    public static final int [] dy4 = {-1,0,1,0} , dx4 = {0,1,0,-1};
    public static final int [] dy8 = {-1,-1,-1,0,1,1,1,0} , dx8 = {-1,0,1,1,1,0,-1,-1};

    public static void main(String [] args) { new Thread(null, new Main(), "", Runtime.getRuntime().maxMemory()).start(); }
    public void run() { solve(); out.flush(); }

}

class mint {
    
    private long value ;
    // private static final long mod = 998244353;
    private static final long mod = 1000000007;

    public mint(long value) {
        this.value = (value % mod + mod) % mod;
    }

    public mint add(mint other) {
        return new mint((this.value + other.value) % mod);
    }

    public mint sub(mint other) {
        return new mint((this.value - other.value + mod) % mod);
    }

    public mint mul(mint other) {
        return new mint((this.value * other.value) % mod);
    }

    public mint inv() {
        return new mint(pow(this.value, mod - 2));
    }

    public mint div(mint other) {
        return this.mul(other.inv());
    }

    private long pow(long a, long b) {
        long res = 1;
        while (b > 0) {
            if ((b & 1) != 0) {
                res = (res * a) % mod;
            }
            a = (a * a) % mod;
            b >>= 1;
        }
        return res;
    }

    public long getVal() {
        return value ;
    }

    @Override
    public String toString() {
        return String.valueOf(value);
    }
    
}

class Input {

    private final InputStream in = System.in;
    private final Scanner sc = new Scanner(System.in);
    private final byte[] buffer = new byte[1024];
    private int ptr = 0;
    private int buflen = 0;

    private boolean hasNextByte() {
        if (ptr < buflen) {
            return true;
        }else{
            ptr = 0;
            try {
                buflen = in.read(buffer);
            } catch (IOException e) {
                e.printStackTrace();
            }
            if (buflen <= 0) {
                return false;
            }
        }
        return true;
    }

    private int readByte() { 
        if (hasNextByte()) return buffer[ptr++]; else return -1;
    }

    private static boolean isPrintableChar(int c) { 
        return 33 <= c && c <= 126;
    }

    private  boolean hasNext() { 
        while(hasNextByte() && !isPrintableChar(buffer[ptr])) {
            ptr++; 
        }
        return hasNextByte();
    }
    
    public String next() {
        if (!hasNext()) throw new NoSuchElementException();
        StringBuilder sb = new StringBuilder();
        int b = readByte();
        while(isPrintableChar(b)) {
            sb.appendCodePoint(b);
            b = readByte();
        }
        return sb.toString();
    }

    public long nextLong() {
        if (!hasNext()) throw new NoSuchElementException();
        long n = 0;
        boolean minus = false;
        int b = readByte();
        if (b == '-') {
            minus = true;
            b = readByte();
        }
        if (b < '0' || '9' < b) {
            throw new NumberFormatException();
        }
        while(true){
            if ('0' <= b && b <= '9') {
                n *= 10;
                n += b - '0';
            }else if(b == -1 || !isPrintableChar(b)){
                return minus ? -n : n;
            }else{
                throw new NumberFormatException();
            }
            b = readByte();
        }
    }

    public int nextInt() {
        long nl = nextLong();
        if (nl < Integer.MIN_VALUE || nl > Integer.MAX_VALUE) throw new NumberFormatException();
        return (int) nl;
    }

    public double nextDouble() { 
        return Double.parseDouble(next());
    }

    public char nextChar() {
        return next().charAt(0);
    }

    public BigInteger nextBigInteger() {
        return sc.nextBigInteger();
    }

    public int [] nextInt(int n) {
        int [] array = new int[n];
        for(int i = 0 ; i < n ; i ++) {
            array[i] = nextInt();
        }
        return array ;
    }

    public int [][] nextInt(int n , int m) {
        int [][] array = new int[n][m];
        for(int i = 0 ; i < n ; i ++) {
            array[i] = nextInt(m);
        }
        return array ;
    }

    public long [] nextLong(int n) {
        long [] array = new long[n];
        for(int i = 0 ; i < n ; i ++) {
            array[i] = nextLong();
        }
        return array ;
    }

    public long [][] nextLong(int n , int m) {
        long [][] array = new long[n][m];
        for(int i = 0 ; i < n ; i ++) {
            array[i] = nextLong(m);
        }
        return array ;
    }

    public double [] nextDouble(int n) {
        double [] array = new double[n];
        for(int i = 0 ; i < n ; i ++) {
            array[i] = nextDouble();
        }
        return array ;
    }
    
    public String [] next(int n) {
        String [] array = new String[n];
        for(int i = 0 ; i < n ; i ++) {
            array[i] = next();
        }
        return array ;
    }

    public String [][] next(int n , int m) {
        String [][] array = new String[n][m];
        for(int i = 0 ; i < n ; i ++) {
            array[i] = next(m);
        }
        return array ;
    }

    public char [] nextChar(int n) {
        char [] array = new char[n];
        String string = next() ;
        for(int i = 0 ; i < n ; i ++) {
            array[i] = string.charAt(i);
        }
        return array ;
    }

    public char [][] nextChar(int n , int m) {
        char [][] array = new char[n][m];
        for(int i = 0 ; i < n ; i ++) {
            array[i] = nextChar(m);
        }
        return array ;
    }

}
0