結果
問題 | No.1663 Maximum Remainder |
ユーザー | Nzt3 |
提出日時 | 2021-09-03 21:39:18 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 219 bytes |
コンパイル時間 | 1,513 ms |
コンパイル使用メモリ | 166,204 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-15 11:04:17 |
合計ジャッジ時間 | 1,925 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 13 |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ int A,B,C,D,M; cin>>A>>B>>C>>D>>M; int ans=0; for(int i=A;i<=B;i++){ for(int j=C;j<=D;j++){ ans=max(ans,(i+j)%M); } } cout<<ans<<'\n'; }