結果
| 問題 | No.1461 しあはせや歩みゆく? | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2021-04-18 01:18:57 | 
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 1,807 bytes | 
| コンパイル時間 | 1,675 ms | 
| コンパイル使用メモリ | 187,512 KB | 
| 実行使用メモリ | 6,944 KB | 
| 最終ジャッジ日時 | 2024-07-04 04:23:59 | 
| 合計ジャッジ時間 | 2,984 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 WA * 1 | 
| other | AC * 33 WA * 1 | 
ソースコード
/* Basic Inclusion */
#define _GLIBCXX_DEBUG
#include <bits/stdc++.h>
using namespace std;
/* definition */
#define atrep(v, value) for (auto v : (value))
#define rep(i, N) for (ll i = 0; i < (ll)(N); i++)
#define repp(i, N) for (ll i = 1; i <= (ll)(N); i++)
#define per(i, N) for (ll i = (ll)(N)-1; i >= 0; i--)
#define pper(i, N) for (ll i = (ll)(N); i > 0; i--)
#define pub(n) push_back(n)
#define pob(n) pop_back(n)
#define all(v) (v).begin(), (v).end()
#define grsort(v) sort((v).begin, (v).end, greater<>())
#define setpre(i) cout << fixed << setprecision((ll)(i))
/* I am lazy XD */
#define co(ans) cout << (ans)
#define out(ans) << (ans)
#define margin << " "
#define fin << endl
#define enter cout << endl
/* Common */
#define ll long long
#define dd double
#define cc char
#define ss string
ll cin_long_long(){ ll value; cin >> value; return value; }
dd cin_double(){ dd value; cin >> value; return value; }
cc cin_char(){ cc value; cin >> value; return value; }
ss cin_string(){ ss value; cin >> value; return value; }
#define cinl cin_long_long()
#define cind cin_double()
#define cinc cin_char()
#define cins cin_string()
#define inf 9223372036854775807
#define minf -9223372036854775807
#define pi 3.1415926535897932384626433832795028
ll bit(ll N){ return (1 << N); }
#define bpop(n) __builtin_popcount(n);
/* template functions */
ll ctol(char c){
   switch (c){
   case '1': return 1; break;
   case '2': return 2; break;
   case '3': return 3; break;
   case '4': return 4; break;
   case '5': return 5; break;
   case '6': return 6; break;
   case '7': return 7; break;
   case '8': return 8; break;
   case '9': return 9; break;
   case '0': return 0; break;
   default: return 0; break;
   }
}
/* main */
int main(void){
   ll N = cinl;
   cout << (N - 3) * 5 + 3 << endl;
}
// /* fin */
            
            
            
        