結果

問題 No.863 計算量
ユーザー GrenacheGrenache
提出日時 2019-08-16 21:25:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 1,000 ms
コード長 1,315 bytes
コンパイル時間 3,498 ms
コンパイル使用メモリ 78,572 KB
実行使用メモリ 54,500 KB
最終ジャッジ日時 2024-09-22 14:55:37
合計ジャッジ時間 6,314 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,152 KB
testcase_01 AC 133 ms
54,140 KB
testcase_02 AC 134 ms
54,140 KB
testcase_03 AC 134 ms
54,172 KB
testcase_04 AC 132 ms
54,104 KB
testcase_05 AC 133 ms
54,260 KB
testcase_06 AC 134 ms
54,228 KB
testcase_07 AC 131 ms
54,016 KB
testcase_08 AC 133 ms
54,020 KB
testcase_09 AC 132 ms
54,500 KB
testcase_10 AC 130 ms
54,012 KB
testcase_11 AC 133 ms
53,992 KB
testcase_12 AC 134 ms
54,000 KB
testcase_13 AC 118 ms
53,076 KB
testcase_14 AC 129 ms
54,044 KB
testcase_15 AC 130 ms
54,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main_yukicoder863 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int a = sc.nextInt();
		int b = sc.nextInt();

		double tmp = b / a;
//		pr.println(tmp);
		if (tmp < 100) {
			pr.println(1);
		} else {
			pr.println(2);
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);
			
		solve();
			
		pr.close();
		sc.close();
	}

	static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
		
		void printInts(int... a) {
			StringBuilder sb = new StringBuilder(32);
			for (int i = 0, size = a.length; i < size; i++) {
				if (i > 0) {
					sb.append(' ');
				}
				sb.append(a[i]);
			}

			println(sb);
		}
		
		void printLongs(long... a) {
			StringBuilder sb = new StringBuilder(64);
			for (int i = 0, size = a.length; i < size; i++) {
				if (i > 0) {
					sb.append(' ');
				}
				sb.append(a[i]);
			}

			println(sb);
		}
		
		void printStrings(String... a) {
			StringBuilder sb = new StringBuilder(32);
			for (int i = 0, size = a.length; i < size; i++) {
				if (i > 0) {
					sb.append(' ');
				}
				sb.append(a[i]);
			}

			println(sb);
		}
	}
}
0