エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
#include<bits/stdc++.h> using namespace std; //予想 short s=32767;//2^15-1 unsigned short us=6553... #include<bits/stdc++.h> using namespace std; //予想 short s=32767;//2^15-1 unsigned short us=65535;//2^16-1 int i=2147483647;//2^31-1 unsigned int ui=4294967295;//2^32-1 long l=2147483647;//2^31-1 unsigned long ul=4294967295;//2^32-1 long long ll=(1LL<<63)-1;//2^63-1 unsigned long long ull=(1LL<<64)-1;//2^64-1 int main() { //予想値 cout<<s<<endl; cout<<us<<endl; cout<<i<<endl; cout<<ui<<endl; cout<<l<<