mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-27 21:36:36 +00:00
P2368 EXCEEDED WARNING B
R41038525
This commit is contained in:
parent
a08205e90c
commit
8136c6e776
22
problem/P2368/P2368.cpp
Normal file
22
problem/P2368/P2368.cpp
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
#include<bits/stdc++.h>
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
int n;
|
||||||
|
cin >> n;
|
||||||
|
if(n <= 8) {
|
||||||
|
cout << 0 << endl;
|
||||||
|
}
|
||||||
|
else if(n == 9) {
|
||||||
|
cout << 8 << endl;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
cout << 72;
|
||||||
|
for(int i = 10 ; i < n ; i++) {
|
||||||
|
cout << 0;
|
||||||
|
}
|
||||||
|
cout << endl;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user