結果
| 問題 | No.791 うし数列 |
| コンテスト | |
| ユーザー |
iNoma87976671
|
| 提出日時 | 2019-03-18 22:40:05 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 130 bytes |
| 記録 | |
| コンパイル時間 | 290 ms |
| コンパイル使用メモリ | 21,284 KB |
| 実行使用メモリ | 15,868 KB |
| 最終ジャッジ日時 | 2026-08-18 05:36:31 |
| 合計ジャッジ時間 | 3,695 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 15 |
ソースコード
N = input()
ans = len(N) - 1
if N[0] != 1:
ans = -5
for i in N[1:]:
if i != 3:
ans = -6
break
print(N[1:])
iNoma87976671