結果
| 問題 |
No.46 はじめのn歩
|
| コンテスト | |
| ユーザー |
latte0119
|
| 提出日時 | 2015-04-30 20:47:26 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 122 bytes |
| コンパイル時間 | 1,057 ms |
| コンパイル使用メモリ | 157,424 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-05 17:14:39 |
| 合計ジャッジ時間 | 1,494 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 5 WA * 5 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
int main(){
int a,b;
cin>>a>>b;
cout<<b/a<<endl;
return 0;
}
latte0119