結果

問題 No.634 硬貨の枚数1
ユーザー kitakitalilykitakitalily
提出日時 2019-05-16 22:29:16
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 3,447 bytes
コンパイル時間 2,321 ms
コンパイル使用メモリ 77,952 KB
実行使用メモリ 61,844 KB
最終ジャッジ日時 2023-10-17 07:04:43
合計ジャッジ時間 18,604 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 193 ms
61,244 KB
testcase_01 AC 140 ms
61,092 KB
testcase_02 AC 140 ms
61,392 KB
testcase_03 AC 139 ms
61,512 KB
testcase_04 AC 190 ms
61,140 KB
testcase_05 AC 141 ms
61,676 KB
testcase_06 AC 141 ms
61,416 KB
testcase_07 AC 143 ms
61,384 KB
testcase_08 AC 190 ms
61,088 KB
testcase_09 AC 136 ms
61,388 KB
testcase_10 AC 137 ms
61,704 KB
testcase_11 AC 191 ms
61,388 KB
testcase_12 AC 137 ms
61,572 KB
testcase_13 AC 192 ms
61,512 KB
testcase_14 AC 192 ms
61,516 KB
testcase_15 AC 192 ms
61,716 KB
testcase_16 AC 190 ms
61,248 KB
testcase_17 AC 191 ms
61,648 KB
testcase_18 AC 189 ms
61,664 KB
testcase_19 AC 147 ms
61,580 KB
testcase_20 AC 147 ms
61,388 KB
testcase_21 AC 191 ms
61,480 KB
testcase_22 AC 190 ms
61,436 KB
testcase_23 AC 189 ms
61,008 KB
testcase_24 AC 193 ms
61,248 KB
testcase_25 AC 193 ms
61,552 KB
testcase_26 AC 190 ms
61,344 KB
testcase_27 AC 191 ms
61,428 KB
testcase_28 AC 193 ms
61,212 KB
testcase_29 AC 189 ms
59,144 KB
testcase_30 AC 189 ms
61,636 KB
testcase_31 AC 191 ms
61,156 KB
testcase_32 AC 191 ms
61,504 KB
testcase_33 AC 190 ms
61,120 KB
testcase_34 AC 192 ms
61,120 KB
testcase_35 AC 191 ms
61,656 KB
testcase_36 AC 192 ms
61,136 KB
testcase_37 AC 190 ms
61,448 KB
testcase_38 AC 191 ms
61,652 KB
testcase_39 AC 191 ms
61,152 KB
testcase_40 AC 191 ms
61,420 KB
testcase_41 AC 188 ms
59,648 KB
testcase_42 AC 189 ms
61,396 KB
testcase_43 AC 189 ms
61,544 KB
testcase_44 AC 136 ms
61,536 KB
testcase_45 AC 189 ms
61,540 KB
testcase_46 AC 145 ms
61,428 KB
testcase_47 WA -
testcase_48 AC 140 ms
61,664 KB
testcase_49 AC 147 ms
61,484 KB
testcase_50 AC 191 ms
61,656 KB
testcase_51 AC 190 ms
61,584 KB
testcase_52 AC 137 ms
61,084 KB
testcase_53 AC 193 ms
61,084 KB
testcase_54 AC 191 ms
61,200 KB
testcase_55 AC 190 ms
61,212 KB
testcase_56 AC 191 ms
61,204 KB
testcase_57 AC 191 ms
61,556 KB
testcase_58 AC 189 ms
61,680 KB
testcase_59 AC 188 ms
61,568 KB
testcase_60 AC 190 ms
61,152 KB
testcase_61 AC 192 ms
61,648 KB
testcase_62 AC 191 ms
61,552 KB
testcase_63 AC 190 ms
61,520 KB
testcase_64 AC 190 ms
61,612 KB
testcase_65 AC 188 ms
61,352 KB
testcase_66 AC 190 ms
61,716 KB
testcase_67 AC 190 ms
61,540 KB
testcase_68 AC 190 ms
61,124 KB
testcase_69 AC 189 ms
61,508 KB
testcase_70 AC 189 ms
61,560 KB
testcase_71 AC 191 ms
61,428 KB
testcase_72 AC 189 ms
61,640 KB
testcase_73 AC 188 ms
61,392 KB
testcase_74 AC 189 ms
59,656 KB
testcase_75 AC 192 ms
61,284 KB
testcase_76 AC 191 ms
61,644 KB
testcase_77 AC 137 ms
61,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static int mod = 1000000007;
  static int size = 200000;
	static long[] fac = new long[size];
	static long[] finv = new long[size];
	static long[] inv = new long[size];
  static int INF = Integer.MAX_VALUE;

 	public static void main(String[] args){
		Scanner scanner = new Scanner(System.in);
		int n = scanner.nextInt();
		long[] coin = new long[100010];
		for(int i = 0; i < 10000; i++){
			coin[i] = (i+1)*(i+2)/2;
			if(n == coin[i]){
				System.out.println(1);
				return;
			}
		}
		for(int i = 0; i < 100000; i++){
			for(int j = 0; j < 1000; j++){
				if(coin[i] + coin[j] == n){
					System.out.println(2);
					return;
				}
			}
		}
		System.out.println(3);
	}
  static class Pair implements Comparable<Pair>{
    int x, y;
    Pair(int a, int b){
        x = a;
        y = b;
    }
    @Override
    public boolean equals(Object o){
        if (this == o) return true;
        if (!(o instanceof Pair)) return false;
        Pair p = (Pair) o;
        return x == p.x && y == p.y;
    }
    @Override
    public int compareTo(Pair p){
        //return x == p.x ? y - p.y : x - p.x; //xで昇順にソート
        //return (x == p.x ? y - p.y : x - p.x) * -1; //xで降順にソート
        //return y == p.y ? x - p.x : y - p.y;//yで昇順にソート
        return (y == p.y ? x - p.x : y - p.y)*-1;//yで降順にソート
    }
  }
  //繰り返し二乗法
  public static long pow(long x, long n){
    long ans = 1;
    while(n > 0){
      if((n & 1) == 1){
        ans = ans * x;
        ans %= mod;
      }
      x = x * x % mod;
      n >>= 1;
    }
    return ans;
  }

  //fac, inv, finvテーブルの初期化、これ使う場合はinitComb()で初期化必要
	public static  void initComb(){
		fac[0] = finv[0] = inv[0] = fac[1] = finv[1] = inv[1] = 1;
		for (int i = 2; i < size; ++i) {
			fac[i] = fac[i - 1] * i % mod;
			inv[i] = mod - (mod / i) * inv[(int) (mod % i)] % mod;
			finv[i] = finv[i - 1] * inv[i] % mod;
		}
	}

	//nCk % mod
	public static long comb(int n, int k){
		return fac[n] * finv[k] % mod * finv[n - k] % mod;
	}

	//n! % mod
	public static long fact(int n){
		return fac[n];
	}

	//(n!)^-1 with % mod
	public static long finv(int n){
		return finv[n];
	}

  static class UnionFind {
    int[] parent;
    public UnionFind(int size) {
      parent = new int[size];
      Arrays.fill(parent, -1);
    }
    public boolean unite(int x, int y) {
      x = root(x);
      y = root(y);
      if (x != y) {
        if (parent[y] < parent[x]) {
          int tmp = y;
          y = x;
          x = tmp;
        }
        parent[x] += parent[y];
        parent[y] = x;
        return true;
      }
      return false;
    }
    public boolean same(int x, int y) {
      return root(x) == root(y);
    }
    public int root(int x) {
      return parent[x] < 0 ? x : (parent[x] = root(parent[x]));
    }
    public int size(int x) {
      return -parent[root(x)];
    }
  }
	public static int upperBound(long[] array, long value) {
			 int low = 0;
			 int high = array.length;
			 int mid;
			 while( low < high ) {
					 mid = ((high - low) >>> 1) + low; // (high + low) / 2
					 if( array[mid] <= value ) {
							 low = mid + 1;
					 } else {
							 high = mid;
					 }
			 }
			 return low;
	 }
  //n,mの最大公約数
  public static int gcd(int n, int m){
    if(m > n) return gcd(m,n);
    if(m == 0) return n;
    return gcd(m, n%m);
  }
}
0