結果
問題 | No.560 ふしぎなナップサック |
ユーザー |
|
提出日時 | 2019-08-18 13:29:12 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 174 bytes |
コンパイル時間 | 1,846 ms |
コンパイル使用メモリ | 193,344 KB |
最終ジャッジ日時 | 2025-01-07 14:10:35 |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 12 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { int m,n; cin>>m>>n; cout<<fixed<<setprecision(8)<<m+n/3.0<<endl; return 0; }