結果
問題 |
No.51 やる気の問題
|
ユーザー |
![]() |
提出日時 | 2020-06-20 16:54:28 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 4 ms / 5,000 ms |
コード長 | 311 bytes |
コンパイル時間 | 1,385 ms |
コンパイル使用メモリ | 165,640 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-03 17:26:06 |
合計ジャッジ時間 | 2,399 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef long double ld; int main(int argc, char *argv[]) { ios::sync_with_stdio(false);cin.tie(nullptr);cout.tie(nullptr); ll w,d;cin>>w>>d; while(d>1){ w -= (w / (d * d)); d--; } cout<<(w / (d * d))<<endl; return 0; }