結果

問題 No.1342 Calculation
ユーザー tnakao0123tnakao0123
提出日時 2021-01-19 18:03:12
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 627 bytes
コンパイル時間 762 ms
コンパイル使用メモリ 92,904 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-17 14:19:46
合計ジャッジ時間 1,219 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 1342.cc:  No.1342 Calculation - yukicoder
 */

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<iostream>
#include<string>
#include<vector>
#include<map>
#include<set>
#include<stack>
#include<list>
#include<queue>
#include<deque>
#include<algorithm>
#include<numeric>
#include<utility>
#include<complex>
#include<functional>
 
using namespace std;

/* constant */

/* typedef */

/* global variables */

/* subroutines */

/* main */

int main() {
  // (19/47+28/43)/27=x/2021
  // -> x=2021*(19/47+28/43)/27=(19*43+28*47)/27=2133/27=79

  puts("79");
  return 0;
}
0