結果
問題 | No.164 ちっちゃくないよ!! |
ユーザー | kapo |
提出日時 | 2016-05-23 14:20:10 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 706 bytes |
コンパイル時間 | 528 ms |
コンパイル使用メモリ | 60,408 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-07 01:15:29 |
合計ジャッジ時間 | 1,150 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | WA | - |
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 | WA | - |
コンパイルメッセージ
main.cpp:25:15: warning: integer constant is so large that it is unsigned 25 | ans = 18446744073709551614; | ^~~~~~~~~~~~~~~~~~~~
ソースコード
#include <iostream> #include <string> #include <cmath> #define rep(i,a,b) for(int i=(a);i<(b);i++) #define ull unsigned long long using namespace std; // 0=48 9=57 A=65 Z=90 int ctoi(char c) { if(c <= 58) return (int)c-48; else return (int)c-55; // -65+10 } int main(void) { int n, num, dig; ull sum, ans; string s, a; char c, mc = 0; cin >> n; ans = 18446744073709551614; rep(i, 0, n) { cin >> s; mc = 0; rep(i, 0, s.size()) { c = s[i]; if (c > mc) mc = c; } dig = ctoi(mc + 1); sum = 0; rep(i, 0, s.size()) { c = s[s.size() - 1 - i]; num = ctoi(c); if(n) sum += num * pow(dig, i); } if(sum < ans) { ans = sum; } } printf("%llu\n",ans); return 0; }