結果
問題 | No.388 階段 (1) |
ユーザー |
|
提出日時 | 2023-12-02 17:42:56 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 131 bytes |
コンパイル時間 | 721 ms |
コンパイル使用メモリ | 65,408 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-26 21:17:18 |
合計ジャッジ時間 | 1,261 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 12 |
ソースコード
#include<iostream> #include<math.h> using namespace std; int main() { int S; int T; cin >> S; cin >> T; printf("%d", ceil(S/T)); }