結果
| 問題 | No.164 ちっちゃくないよ!! |
| コンテスト | |
| ユーザー |
tsuishi
|
| 提出日時 | 2021-02-15 16:48:21 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 1,741 bytes |
| コンパイル時間 | 162 ms |
| コンパイル使用メモリ | 30,080 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-07-23 07:51:12 |
| 合計ジャッジ時間 | 723 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 11 |
ソースコード
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
// Yukicoder №164 ちっちゃくないよ!! ★★
// https://yukicoder.me/problems/no/164
// ***********************
#define PRINCR do{printf("\n");fflush(stdout);}while(0)
#define GETLINE(str) do{char *p;fgets(str,sizeof(str),stdin);p=strchr(str,'\n');if(p)*p='\0';}while(0)
#define REP(a,b) for(int a=0;a<(int)(b);++a)
static char *GETWORD(char* str) {char c;char *cp;cp=&str[0];c=fgetc(stdin);while( c != EOF ){if((c==' ')||( c=='\n')) break;*cp++=c;c=fgetc(stdin);}*cp='\0';return &str[0];}
#define GETINTS(a,b) {char s[34];int *ap=a;REP(i,b){GETWORD(s);sscanf(s,"%d", ap);ap++;}}
static int GETLINEINT(void) {char s[34];GETLINE(s);return atoi(s);}
static int GETWORDINT(void) {char s[34];GETWORD(s);return atoi(s);}
#define Yes(a) printf("%s",((a)?"Yes":"No"))
long long miniatoi( char *str ) {
int lank;
int start;
long long val;
char *cp;
int col;
long long mini = 4738381338321616893;
cp = str;
start = 0;
while( *cp != '\0' ) {
if( start < *cp ) start = *cp;
cp++;
}
if( start <= '9' ) {
start = start - '0';
} else {
start = start - 'A' +10;
}
start += 1;
if( start < 2 ) start = 2;
if( start > 36) start = 36;
for( lank = start ; lank == start ; lank++ ) {
val = 0L;
cp = str;
while( *cp != '\0' ) {
if( *cp <= '9' ) {
col = *cp - '0';
} else {
col = *cp - 'A' +10;
}
val *= lank;
val += col;
cp++;
}
if( mini > val ) mini = val;
}
return mini;
}
int main() {
char st[24];
int query;
long long val;
long long minim = 4738381338321616893;
query = GETLINEINT();
REP(i,query) {
GETLINE(st);
val = miniatoi( st );
if( val < minim ) minim = val;
}
printf("%lld\n",minim);
return 0;
}
tsuishi