結果

問題 No.2174 3 O'clock Easy
ユーザー 👑 p-adicp-adic
提出日時 2022-12-26 22:46:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 932 bytes
コンパイル時間 3,477 ms
コンパイル使用メモリ 212,136 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-21 09:42:52
合計ジャッジ時間 3,765 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize ( "O3" )
#pragma GCC target ( "avx" )
#include <bits/stdc++.h>
using namespace std;

using ll = long long;

#define TYPE_OF( VAR ) remove_const<remove_reference<decltype( VAR )>::type >::type
#define UNTIE ios_base::sync_with_stdio( false ); cin.tie( nullptr ) 
#define CEXPR( LL , BOUND , VALUE ) constexpr const LL BOUND = VALUE 
#define CIN( LL , A ) LL A; cin >> A 
#define ASSERT( A , MIN , MAX ) assert( MIN <= A && A <= MAX ) 
#define CIN_ASSERT( A , MIN , MAX ) CIN( TYPE_OF( MAX ) , A ); ASSERT( A , MIN , MAX ) 
#define QUIT return 0 
#define COUT( ANSWER ) cout << ( ANSWER ) << "\n"; 
#define RETURN( ANSWER ) COUT( ANSWER ); QUIT 

int main()
{
  UNTIE;
  CEXPR( ll , bound_N , 10000 );
  CIN_ASSERT( N , 1 , bound_N );
  ll Nq = N / 3;
  ll Nq2 = ( Nq * ( Nq + 1 ) ) / 2;
  ll Nr = N % 3;
  RETURN( 27 * Nq2 * Nq2 + ( 6 * Nq2 - 1 ) * Nq + ( Nr == 0 ? 0 : Nr == 1 ? N : ( N * ( N + 1 ) - 1 ) ) );
}
0