結果

問題 No.176 2種類の切手
ユーザー uafr_csuafr_cs
提出日時 2015-12-07 00:25:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 1,000 ms
コード長 808 bytes
コンパイル時間 2,165 ms
コンパイル使用メモリ 75,900 KB
実行使用メモリ 54,300 KB
最終ジャッジ日時 2024-10-08 03:40:25
合計ジャッジ時間 7,602 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,172 KB
testcase_01 AC 134 ms
54,096 KB
testcase_02 AC 134 ms
54,124 KB
testcase_03 AC 133 ms
53,996 KB
testcase_04 AC 131 ms
54,172 KB
testcase_05 AC 131 ms
54,300 KB
testcase_06 AC 136 ms
54,036 KB
testcase_07 AC 124 ms
52,660 KB
testcase_08 AC 134 ms
54,088 KB
testcase_09 AC 130 ms
54,020 KB
testcase_10 AC 130 ms
54,052 KB
testcase_11 AC 132 ms
54,152 KB
testcase_12 AC 131 ms
54,024 KB
testcase_13 AC 131 ms
53,952 KB
testcase_14 AC 129 ms
54,296 KB
testcase_15 AC 131 ms
54,104 KB
testcase_16 AC 130 ms
54,084 KB
testcase_17 AC 134 ms
53,912 KB
testcase_18 AC 131 ms
53,832 KB
testcase_19 AC 132 ms
53,936 KB
testcase_20 AC 132 ms
54,000 KB
testcase_21 AC 131 ms
53,952 KB
testcase_22 AC 135 ms
53,992 KB
testcase_23 AC 135 ms
53,900 KB
testcase_24 AC 133 ms
54,024 KB
testcase_25 AC 133 ms
54,108 KB
testcase_26 AC 135 ms
53,884 KB
testcase_27 AC 132 ms
53,820 KB
testcase_28 AC 132 ms
53,708 KB
testcase_29 AC 140 ms
54,072 KB
testcase_30 AC 134 ms
53,820 KB
testcase_31 AC 132 ms
53,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final long A = sc.nextLong();
		final long B = sc.nextLong();
		final long T = sc.nextLong();
		
		final long max = Math.max(A, B);
		final long min = Math.min(A, B);
		
		Set<Long> hash = new HashSet<Long>();
		long answer = Long.MAX_VALUE;
	
		for(long i = (T + max - 1) / max; i >= 0; i--){
			long value = i * max;
			value += Math.max(0, (T - value + min - 1) / min * min);
			//System.out.println(value);
			
			if(hash.contains(value)){
				break;
			}else{
				answer = Math.min(answer, value);
				hash.add(value);
			}
		}
		
		System.out.println(answer);	
	}

}
0