結果

問題 No.491 10^9+1と回文
ユーザー cureskolcureskol
提出日時 2022-05-29 13:08:00
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 221 bytes
コンパイル時間 2,155 ms
コンパイル使用メモリ 192,940 KB
最終ジャッジ日時 2025-01-29 16:57:07
ジャッジサーバーID
(参考情報)
judge3 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 23 WA * 80
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i,n) for(int i=0;i<(n);i++)

using ll =long long;

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  ll n;cin>>n;
  cout<<n/(1000000001)<<endl;
}
  
0