結果

問題 No.164 ちっちゃくないよ!!
ユーザー erieri
提出日時 2015-08-01 00:34:39
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 540 bytes
コンパイル時間 501 ms
コンパイル使用メモリ 58,044 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-18 00:15:27
合計ジャッジ時間 1,200 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:27:18: warning: format ‘%u’ expects argument of type ‘unsigned int’, but argument 2 has type ‘ULL’ {aka ‘long long unsigned int’} [-Wformat=]
   27 |         printf("%ulld\n", ans);
      |                 ~^        ~~~
      |                  |        |
      |                  |        ULL {aka long long unsigned int}
      |                  unsigned int
      |                 %llu

ソースコード

diff #

#include <iostream>
#include<string>
#include<algorithm>
using namespace std;
typedef unsigned long long ULL;
int main() {
	int n; cin >> n;

	ULL ans = 1ULL << 63;
	for (int i = 0; i < n; i++){
		string s; cin >> s;

		int d = 2;
		for (int j = 0; j < s.size(); j++){
			if (isalpha(s[j])) s[j] = s[j] - 'A' + 10;
			else s[j] -= '0';
			d = max(d, (int)s[j]);
		}
		d++;

		ULL num = 0, mul = 1;
		for (int j = s.size() - 1; j >= 0; j--, mul *= d){
			num += s[j] * mul;
		}
		ans = min(ans, num);
	}
	printf("%ulld\n", ans);
	return 0;
}
0