結果
| 問題 | No.128 お年玉(1) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-12-14 19:34:20 |
| 言語 | C++14 (gcc 15.3.0 + boost 1.92.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 5,000 ms |
| + 464µs | |
| コード長 | 405 bytes |
| 記録 | |
| コンパイル時間 | 1,075 ms |
| コンパイル使用メモリ | 199,332 KB |
| 実行使用メモリ | 9,796 KB |
| 最終ジャッジ日時 | 2026-08-24 07:28:31 |
| 合計ジャッジ時間 | 2,946 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 |
コンパイルメッセージ
main.cpp:7:12: warning: use of 'auto' in parameter declaration only available with '-std=c++20' or '-fconcepts' [-Wc++20-extensions]
7 | void print(auto a){
| ^~~~
main.cpp:11:13: warning: use of 'auto' in parameter declaration only available with '-std=c++20' or '-fconcepts' [-Wc++20-extensions]
11 | void printL(auto a){
| ^~~~
ソースコード
#define _GLIBCXX_DEBUG
#define ll long long
#include <bits/stdc++.h>
using namespace std;
using Graph = vector<vector<int>>;
void print(auto a){
cout << a;
}
void printL(auto a){
cout << a << endl;
}
void fix(int n){
cout << fixed << setprecision(n);
}
ll RD(ll n, ll m){
return n/m;
}
void Oto(ll n, ll m){
printL(1000*RD(n/1000,m));
}
int main(){
ll N, M; cin >> N >> M;
Oto(N, M);
}