結果

問題 No.2862 NOT FOUND 404
ユーザー ねしんねしん
提出日時 2024-08-30 21:21:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 117 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 53,648 KB
最終ジャッジ日時 2024-08-30 21:21:46
合計ジャッジ時間 1,291 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,676 KB
testcase_01 AC 33 ms
52,496 KB
testcase_02 AC 34 ms
52,048 KB
testcase_03 AC 34 ms
53,124 KB
testcase_04 AC 34 ms
53,648 KB
testcase_05 AC 35 ms
52,488 KB
testcase_06 AC 37 ms
52,120 KB
testcase_07 AC 35 ms
52,684 KB
testcase_08 WA -
testcase_09 AC 33 ms
53,572 KB
testcase_10 AC 34 ms
52,752 KB
testcase_11 AC 36 ms
53,528 KB
testcase_12 AC 34 ms
52,208 KB
testcase_13 WA -
testcase_14 AC 35 ms
53,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=input()
for i in range(N-3):
	if S[i:i+3]=="404":
		print("Found")
		exit()
else:
	print("NotFound")
0