結果

問題 No.141 魔法少女コバ
ユーザー kou6839kou6839
提出日時 2015-02-23 16:24:52
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 459 bytes
コンパイル時間 1,983 ms
コンパイル使用メモリ 74,728 KB
実行使用メモリ 56,148 KB
最終ジャッジ日時 2024-06-23 22:01:35
合計ジャッジ時間 16,602 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,308 KB
testcase_01 AC 130 ms
53,872 KB
testcase_02 AC 132 ms
53,984 KB
testcase_03 AC 132 ms
53,996 KB
testcase_04 AC 133 ms
54,228 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 132 ms
54,296 KB
testcase_08 RE -
testcase_09 AC 132 ms
54,144 KB
testcase_10 AC 132 ms
54,200 KB
testcase_11 AC 133 ms
54,144 KB
testcase_12 AC 131 ms
54,160 KB
testcase_13 AC 130 ms
54,152 KB
testcase_14 AC 133 ms
54,024 KB
testcase_15 AC 134 ms
53,976 KB
testcase_16 AC 130 ms
54,072 KB
testcase_17 RE -
testcase_18 AC 133 ms
54,440 KB
testcase_19 AC 133 ms
54,364 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 131 ms
54,300 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 133 ms
54,272 KB
testcase_31 RE -
testcase_32 AC 130 ms
54,252 KB
testcase_33 RE -
testcase_34 RE -
testcase_35 AC 135 ms
54,432 KB
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 AC 133 ms
54,336 KB
testcase_40 RE -
testcase_41 AC 132 ms
54,220 KB
testcase_42 AC 132 ms
54,196 KB
testcase_43 AC 132 ms
53,908 KB
testcase_44 AC 130 ms
53,920 KB
testcase_45 RE -
testcase_46 AC 133 ms
54,148 KB
testcase_47 RE -
testcase_48 RE -
testcase_49 AC 128 ms
54,028 KB
testcase_50 RE -
testcase_51 RE -
testcase_52 AC 130 ms
54,180 KB
testcase_53 RE -
testcase_54 AC 131 ms
54,176 KB
testcase_55 RE -
testcase_56 AC 131 ms
54,264 KB
testcase_57 AC 131 ms
54,180 KB
testcase_58 AC 134 ms
54,160 KB
testcase_59 AC 131 ms
54,164 KB
testcase_60 RE -
testcase_61 RE -
testcase_62 AC 133 ms
54,160 KB
testcase_63 AC 131 ms
54,288 KB
testcase_64 RE -
testcase_65 AC 133 ms
54,296 KB
testcase_66 AC 134 ms
54,316 KB
testcase_67 RE -
testcase_68 AC 134 ms
53,996 KB
testcase_69 RE -
testcase_70 AC 135 ms
54,036 KB
testcase_71 AC 134 ms
54,020 KB
testcase_72 AC 134 ms
54,404 KB
testcase_73 RE -
testcase_74 AC 133 ms
54,064 KB
testcase_75 AC 136 ms
56,148 KB
testcase_76 RE -
testcase_77 RE -
testcase_78 AC 135 ms
54,152 KB
testcase_79 RE -
testcase_80 AC 133 ms
54,160 KB
testcase_81 AC 133 ms
54,220 KB
testcase_82 AC 136 ms
54,456 KB
testcase-evil-0.txt AC 134 ms
54,228 KB
testcase-evil-1.txt RE -
testcase-evil-2.txt AC 132 ms
54,128 KB
testcase-evil-3.txt AC 133 ms
54,252 KB
testcase-evil-4.txt AC 133 ms
54,028 KB
testcase-evil-5.txt AC 133 ms
54,252 KB
testcase-evil-6.txt AC 132 ms
54,272 KB
testcase-evil-7.txt AC 135 ms
54,296 KB
testcase-evil-8.txt AC 135 ms
54,144 KB
testcase-evil-9.txt AC 134 ms
54,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int x = sc.nextInt();
		int y=sc.nextInt();
		int ans=0;
		while(x!=y){
			if(x>y){
				if(y==1){
				int temp=x/y-1;
				x-=temp*y;
				ans+=temp;
				}else{
					int temp=x/y;
					x-=temp*y;
					ans+=temp;
				}
			}else if(x<y){
				int temp=x;
				x=y;
				y=temp;
				ans++;
			}
		}
		System.out.println(ans);
	}
}
0