結果
問題 | No.836 じょうよ |
ユーザー | fura |
提出日時 | 2020-04-13 13:44:52 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 12 ms / 1,000 ms |
コード長 | 213 bytes |
コンパイル時間 | 2,031 ms |
コンパイル使用メモリ | 190,608 KB |
最終ジャッジ日時 | 2025-01-09 17:58:49 |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 41 |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(n);i++) using namespace std; using lint=long long; int main(){ lint l,r,n; cin>>l>>r>>n; rep(i,n) printf("%lld\n",(r+n-i)/n-(l+n-1-i)/n); return 0; }