結果

問題 No.2140 Triangle
ユーザー Nzt3Nzt3
提出日時 2022-12-02 21:57:54
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 150 bytes
コンパイル時間 4,053 ms
コンパイル使用メモリ 200,096 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-09 23:14:06
合計ジャッジ時間 3,563 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int A;
  cin>>A;
  cout<<A*2-1<<'\n';
}
0