結果
問題 |
No.491 10^9+1と回文
|
ユーザー |
|
提出日時 | 2017-03-10 23:32:10 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 329 bytes |
コンパイル時間 | 1,278 ms |
コンパイル使用メモリ | 157,576 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-24 08:52:57 |
合計ジャッジ時間 | 3,449 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 23 WA * 80 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define all(v) begin(v), end(v) #define FOR(i,a,b) for(int i=(a);i<(int)(b);i++) #define rep(i,b) FOR(i,0,b) const ll mod = 1e9+7; ll INF = 100000000; ll n,k,a[100010],b[100010],ans; string s; int main(){ cin>>n; cout<<n/1000000001<<endl; return 0; }