結果
| 問題 |
No.504 ゲーム大会(ランキング)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-04-23 05:35:54 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 168 bytes |
| コンパイル時間 | 385 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 14,848 KB |
| 最終ジャッジ日時 | 2024-07-22 11:05:20 |
| 合計ジャッジ時間 | 4,375 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 6 WA * 7 |
ソースコード
n=int(input())
lsp=[]
for i in range(n):
lsp.append(int(input()))
cnt=1
print(cnt)
for i in range(n-1):
if lsp[i]<lsp[i+1]:
cnt+=1
print(cnt)