結果
問題 |
No.491 10^9+1と回文
|
ユーザー |
![]() |
提出日時 | 2025-03-06 18:36:02 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 123 bytes |
コンパイル時間 | 462 ms |
コンパイル使用メモリ | 82,596 KB |
実行使用メモリ | 54,384 KB |
最終ジャッジ日時 | 2025-03-06 18:36:11 |
合計ジャッジ時間 | 7,981 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | AC * 11 WA * 92 |
ソースコード
n=int(input()) c=0 for i in range(1,10): for j in range(1,10): c+=int(str(i)*j+"0"*(9-j)+str(i)*j)*(10**9+1)<=n print(c)