結果
問題 | No.1281 Cigarette Distribution |
ユーザー | 沙耶花 |
提出日時 | 2020-11-06 22:43:02 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 903 bytes |
コンパイル時間 | 1,882 ms |
コンパイル使用メモリ | 203,208 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-22 13:23:19 |
合計ジャッジ時間 | 4,553 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
#include <stdio.h> #include <bits/stdc++.h> #include <atcoder/modint> using namespace atcoder; using mint = modint1000000007; using namespace std; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf 10000000000000000 int main(){ int N,M; cin>>N>>M; for(int i=1;i<=M;i++){ if(i==1){ cout<<N<<endl; continue; } if(i==2){ long long x = 0,y = 0; rep(i,N){ if(x>y)swap(x,y); x += 2; if(x>y)swap(x,y); x--; } cout<<mint(x*y).val()<<endl; continue; } if((N+1)/2<i){ cout<<0<<endl; continue; } long long a = (N-1)/(i-1); long long b = a+1; long long ok = 0,ng = i-1; while(ng-ok>1){ long long mid = (ok+ng)/2; if(mid*b+((long long)i-1-mid)*a > (N-1))ng = mid; else ok = mid; } mint ans = mint(a).pow(i-1-ok); ans *= mint(b).pow(ok); //ans *= 2; cout<<ans.val()<<endl; } return 0; }