結果

問題 No.51 やる気の問題
ユーザー kou6839kou6839
提出日時 2014-11-19 13:36:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 289 bytes
コンパイル時間 2,580 ms
コンパイル使用メモリ 73,908 KB
実行使用メモリ 41,436 KB
最終ジャッジ日時 2024-06-10 21:13:27
合計ジャッジ時間 5,052 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
39,860 KB
testcase_01 AC 101 ms
39,940 KB
testcase_02 AC 108 ms
41,436 KB
testcase_03 AC 99 ms
40,252 KB
testcase_04 AC 106 ms
41,084 KB
testcase_05 AC 116 ms
41,368 KB
testcase_06 AC 107 ms
41,236 KB
testcase_07 AC 102 ms
40,240 KB
testcase_08 AC 108 ms
41,008 KB
testcase_09 AC 115 ms
41,076 KB
testcase_10 AC 102 ms
40,016 KB
testcase_11 AC 102 ms
40,000 KB
testcase_12 AC 102 ms
40,188 KB
testcase_13 AC 101 ms
40,252 KB
testcase_14 AC 109 ms
41,124 KB
testcase_15 AC 110 ms
41,136 KB
testcase_16 AC 101 ms
40,244 KB
testcase_17 AC 113 ms
41,072 KB
testcase_18 AC 123 ms
41,328 KB
testcase_19 AC 110 ms
41,436 KB
testcase_20 AC 101 ms
39,968 KB
testcase_21 AC 107 ms
41,024 KB
testcase_22 AC 111 ms
41,116 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