Submission #79526


ソースコード

1
2
3
4
5
6
7
8
9
10
11
12
13
#include <bits/stdc++.h>
using namespace std;
int main() {
unsigned long long n;
cin >> n;
unsigned long long x = 1;
while (x < n) {
x *= 2;
}
cout << x << "\n";
return(0);
}

ステータス

項目 データ
問題 1750 - 無限ビスケット
ユーザー名 woody_1227
投稿日時 2024-07-09 09:49:51
言語 C++17
状態 Accepted
得点 10
ソースコード長 223 Byte
最大実行時間 28 ms
最大メモリ使用量 724 KB

セット

セット 得点 Cases
1 ALL 10 / 10 *

テストケース

ファイル名 状態 実行時間 メモリ使用量 #
in1.txt AC 20 ms 600 KB
1
in2.txt AC 17 ms 440 KB
1
in3.txt AC 20 ms 544 KB
1
in4.txt AC 23 ms 388 KB
1
in5.txt AC 15 ms 612 KB
1
in6.txt AC 28 ms 584 KB
1
inMAX.txt AC 24 ms 684 KB
1
insample1.txt AC 22 ms 528 KB
1
insample2.txt AC 22 ms 624 KB
1
insample3.txt AC 24 ms 724 KB
1