結果
| 問題 |
No.836 じょうよ
|
| コンテスト | |
| ユーザー |
keisuke6
|
| 提出日時 | 2022-08-30 14:10:00 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 129 ms / 1,000 ms |
| コード長 | 215 bytes |
| コンパイル時間 | 2,010 ms |
| コンパイル使用メモリ | 192,236 KB |
| 最終ジャッジ日時 | 2025-02-06 23:54:54 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 41 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define int long long
signed main(){
int l,r,n;
cin>>l>>r>>n;
l += n;
r += n;
for(int i=0;i<n;i++){
cout<<r/n-(l-1)/n<<endl;
l--;
r--;
}
}
keisuke6