結果
問題 |
No.1663 Maximum Remainder
|
ユーザー |
![]() |
提出日時 | 2025-08-27 16:11:08 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 125 ms / 2,000 ms |
コード長 | 530 bytes |
コンパイル時間 | 1,954 ms |
コンパイル使用メモリ | 76,892 KB |
実行使用メモリ | 46,644 KB |
最終ジャッジ日時 | 2025-08-27 16:11:13 |
合計ジャッジ時間 | 4,759 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 13 |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); int c = sc.nextInt(); int d = sc.nextInt(); int m = sc.nextInt(); int max = 0; for(int i = a ; i <= b ; i++){ for(int j = c ; j <= d ;j++){ int ans = (i+j)%m; if(ans > max){ max = ans; } } } System.out.println(max); } }