結果
問題 | No.48 ロボットの操縦 |
ユーザー |
![]() |
提出日時 | 2018-07-06 14:27:28 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 352 bytes |
コンパイル時間 | 1,493 ms |
コンパイル使用メモリ | 165,864 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-01 02:45:04 |
合計ジャッジ時間 | 2,365 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 25 |
ソースコード
#include<bits/stdc++.h> using namespace std; using Int = long long; //INSERT ABOVE HERE signed main(){ Int x,y,l; cin>>x>>y>>l; if(x==0){ Int ans=0; if(y<0) ans+=2,y=-y; ans+=(y+l-1)/l; cout<<ans<<endl; return 0; } Int ans=1+(y<0); x=abs(x);y=abs(y); ans+=(x+l-1)/l; ans+=(y+l-1)/l; cout<<ans<<endl; return 0; }