結果
問題 | No.757 チャンパーノウン定数 (2) |
ユーザー | kotatsugame |
提出日時 | 2018-12-05 01:58:49 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 999 bytes |
コンパイル時間 | 558 ms |
コンパイル使用メモリ | 66,436 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-16 02:27:29 |
合計ジャッジ時間 | 2,337 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | AC | 2 ms
6,940 KB |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | AC | 2 ms
6,944 KB |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | AC | 2 ms
6,940 KB |
testcase_51 | AC | 2 ms
6,940 KB |
testcase_52 | RE | - |
testcase_53 | AC | 2 ms
6,944 KB |
コンパイルメッセージ
main.cpp:5:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 5 | main() | ^~~~
ソースコード
#include<iostream> using namespace std; int b; string d; main() { cin>>b>>d; int x; for(x=1;x<d.size();x++) { int sub=x*(b-1); int id=d.size()-x; while(sub>0&&id>=0) { if(d[id]-48>=sub%b) { d[id]-=sub%b; } else { d[id]=d[id]-sub%b+b; sub+=b; } sub/=b; id--; } if(sub>0) { for(int i=0;i<=d.size()-x;i++)sub*=b; sub-=x*(b-1); int id=d.size()-x; while(sub>0) { if(d[id]-48>=sub%b)d[id]-=sub%b; else { d[id]=d[id]-sub%b+b; sub+=b; } sub/=b; id--; } break; } } string ans=""; int carry=0; for(int i=0;i<d.size()-x;i++)carry=carry*b+d[i]-48; for(int i=x;i>0;i--) { carry=carry*b+d[d.size()-i]-48; int t=carry/x+(i==x); carry%=x; ans+=48+t; } if(carry>0) { int id=ans.size()-1; while(ans[id]-48==b-1)ans[id++]=48; ans[id]++;return 1; } else { int id=ans.size()-1; while(ans[id]-48==0)ans[id++]=48+b-1; ans[id]--; } cout<<ans[carry?carry-1:ans.size()-1]<<endl; }