题样:
// import java.util.Scanner;
// public class Main{
// public static void main(String[] args){
// Scanner sc = new Scanner(System.in);
// int n = sc.nextInt();
// int[] a= new int[n];
// for(int i=0;i<n;i++) {
// a[i] = sc.nextInt();
// }
// int[] ans=findLengthOfLCIS(a);
// for(int i=0;i<ans.length;i++) {
// if(i==0)System.out.print(ans[i]);
// else System.out.print(" "+ans[i]);
// }
// }
// public static int[] findLengthOfLCIS(int[] nums) {
// int ans = 0;
// int start=0;
// for(int i=0;i<nums.length;i++) {
// if(i>0&&nums[i]<=nums[i-1]) {
// start=i;
// }
// ans&