結果
問題 | No.836 じょうよ |
ユーザー | karinohito |
提出日時 | 2022-12-09 00:43:12 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 110 ms / 1,000 ms |
コード長 | 190 bytes |
コンパイル時間 | 2,043 ms |
コンパイル使用メモリ | 199,420 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-14 18:21:08 |
合計ジャッジ時間 | 4,951 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 41 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; int main() { ll L,R,N; cin>>L>>R>>N; L--; for(int i=0;i<N;i++)cout<<(R/N)+(R%N>=i)-(L/N)-(L%N>=i)<<endl; }