結果
問題 | No.1231 Make a Multiple of Ten |
ユーザー | ゆきのん |
提出日時 | 2020-09-21 06:58:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 116 ms / 2,000 ms |
コード長 | 1,075 bytes |
コンパイル時間 | 1,608 ms |
コンパイル使用メモリ | 171,920 KB |
実行使用メモリ | 28,276 KB |
最終ジャッジ日時 | 2024-06-24 11:23:33 |
合計ジャッジ時間 | 3,111 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 55 ms
14,592 KB |
testcase_05 | AC | 49 ms
13,184 KB |
testcase_06 | AC | 21 ms
7,168 KB |
testcase_07 | AC | 58 ms
15,104 KB |
testcase_08 | AC | 24 ms
10,112 KB |
testcase_09 | AC | 13 ms
6,944 KB |
testcase_10 | AC | 51 ms
13,824 KB |
testcase_11 | AC | 60 ms
15,956 KB |
testcase_12 | AC | 109 ms
26,872 KB |
testcase_13 | AC | 114 ms
28,124 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 116 ms
28,276 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #define fs first #define sc second #define pb push_back #define mp make_pair #define eb emplace_back #define ALL(A) A.begin(),A.end() #define RALL(A) A.rbegin(),A.rend() typedef long long ll; typedef pair<ll,ll> P; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } template<typename T> T gcd(T a,T b){return b?gcd(b,a%b):a;} const ll MOD=1000000007; const ll LINF=1ll<<60; const int INF=1<<30; int dx[]={1,0,-1,0,1,-1,1,-1}; int dy[]={0,1,0,-1,1,-1,-1,1}; int main(){ int n;cin >> n; vector<ll> a(n); for (int i = 0; i < n; i++) { cin >> a[i]; a[i] %= 10; } vector<vector<ll>> dp(n+1,vector<ll> (10, -LINF)); dp[0][0] = 0; for (int i = 0; i < n; i++) { for (int j = 0; j < 10; j++) { chmax(dp[i+1][(j+a[i])%10],dp[i][j] + 1); chmax(dp[i+1][j],dp[i][j]); } } cout << dp[n][0] << endl; return 0; }