結果
問題 |
No.46 はじめのn歩
|
ユーザー |
![]() |
提出日時 | 2021-02-08 01:51:08 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 227 bytes |
コンパイル時間 | 670 ms |
コンパイル使用メモリ | 63,996 KB |
実行使用メモリ | 10,012 KB |
最終ジャッジ日時 | 2024-07-04 20:54:12 |
合計ジャッジ時間 | 13,002 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | TLE * 1 -- * 9 |
ソースコード
#include <iostream> #include <string> using namespace std; int main() { int a, b, c; cin >> a >> b; c=0; while(b > 0) { b - a; c++; } cout << c << endl; return 0; }