結果

問題 No.51 やる気の問題
ユーザー kou6839kou6839
提出日時 2014-11-19 13:36:46
言語 Java
(openjdk 23)
結果
AC  
実行時間 112 ms / 5,000 ms
コード長 289 bytes
コンパイル時間 2,056 ms
コンパイル使用メモリ 76,364 KB
実行使用メモリ 41,852 KB
最終ジャッジ日時 2025-01-02 19:15:14
合計ジャッジ時間 5,840 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,556 KB
testcase_01 AC 104 ms
41,600 KB
testcase_02 AC 106 ms
41,556 KB
testcase_03 AC 103 ms
41,684 KB
testcase_04 AC 105 ms
41,600 KB
testcase_05 AC 108 ms
41,532 KB
testcase_06 AC 107 ms
41,456 KB
testcase_07 AC 107 ms
41,568 KB
testcase_08 AC 112 ms
41,556 KB
testcase_09 AC 111 ms
41,852 KB
testcase_10 AC 102 ms
41,572 KB
testcase_11 AC 107 ms
41,472 KB
testcase_12 AC 106 ms
41,516 KB
testcase_13 AC 103 ms
41,336 KB
testcase_14 AC 111 ms
41,596 KB
testcase_15 AC 111 ms
41,844 KB
testcase_16 AC 106 ms
41,728 KB
testcase_17 AC 107 ms
41,552 KB
testcase_18 AC 112 ms
41,704 KB
testcase_19 AC 109 ms
41,192 KB
testcase_20 AC 108 ms
41,344 KB
testcase_21 AC 105 ms
41,292 KB
testcase_22 AC 108 ms
41,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 

public class Main {
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int x= sc.nextInt();
		int y=sc.nextInt();
		while(y>1){
			int temp=x/(int)Math.pow(y,2);
			x-=temp;
			y--;
		}
		System.out.println(x);
	}
}	
0