結果

問題 No.1342 Calculation
ユーザー tnakao0123tnakao0123
提出日時 2021-01-19 18:03:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 627 bytes
コンパイル時間 677 ms
コンパイル使用メモリ 89,240 KB
実行使用メモリ 4,376 KB
最終ジャッジ日時 2023-08-22 15:07:51
合計ジャッジ時間 1,212 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 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