Submission #161745


Source Code Expand

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


public class Main {
    static BufferedReader br = new BufferedReader(
            new InputStreamReader(System.in));
    static PrintWriter out = new PrintWriter(System.out);

    static boolean isDebug = true;

    int N;
    
    public void solve() throws Throwable {
        
        out.println(readInt() - 1);

        out.flush();
    }
    
    
    public static void main(String[] args) throws Throwable {
        long start = System.currentTimeMillis();

        Main main = new Main();
        main.solve();
        
        debug((System.currentTimeMillis() - start + ":ms"));
    }
    
    private int readInt() throws IOException {
        return Integer.parseInt(br.readLine());
    }
    
    private int[] readIntArray() throws IOException {
        String[] s = br.readLine().split(" ");

        int cnt = s.length;
        int[] out = new int[cnt];

        for (int i = 0; i < cnt; i++) {
            out[i] = Integer.parseInt(s[i]);
        }

        return out;
    }

    private static void debug(Object... o) {
        if (isDebug) out.println(Arrays.deepToString(o));
    }

}
class Type {
    int x, y;
    Type(int y, int x) { this.y = y; this.x = x; }
    Type(int[] a) { this.y = a[0]; this.x = a[1]; }
}

Submission Info

Submission Time
Task A - 植木算
User tochukaso
Language Java (OpenJDK 1.7.0)
Score 100
Code Size 1360 Byte
Status AC
Exec Time 440 ms
Memory 20792 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 3
AC × 17
Set Name Test Cases
Sample subtask0_sample01.txt, subtask0_sample02.txt, subtask0_sample03.txt
All subtask0_sample01.txt, subtask0_sample02.txt, subtask0_sample03.txt, subtask1_01.txt, subtask1_02.txt, subtask1_03.txt, subtask1_04.txt, subtask1_05.txt, subtask1_06.txt, subtask1_07.txt, subtask1_08.txt, subtask1_09.txt, subtask1_10.txt, subtask1_11.txt, subtask1_12.txt, subtask1_13.txt, subtask1_14.txt
Case Name Status Exec Time Memory
subtask0_sample01.txt AC 440 ms 20792 KB
subtask0_sample02.txt AC 402 ms 20668 KB
subtask0_sample03.txt AC 431 ms 20656 KB
subtask1_01.txt AC 414 ms 20660 KB
subtask1_02.txt AC 411 ms 20660 KB
subtask1_03.txt AC 406 ms 20652 KB
subtask1_04.txt AC 419 ms 20660 KB
subtask1_05.txt AC 407 ms 20648 KB
subtask1_06.txt AC 389 ms 20648 KB
subtask1_07.txt AC 421 ms 20656 KB
subtask1_08.txt AC 412 ms 20660 KB
subtask1_09.txt AC 413 ms 20628 KB
subtask1_10.txt AC 425 ms 20652 KB
subtask1_11.txt AC 400 ms 20660 KB
subtask1_12.txt AC 399 ms 20644 KB
subtask1_13.txt AC 407 ms 20648 KB
subtask1_14.txt AC 411 ms 20656 KB