3665
[1, 1, 5]
static int[] toHMS(int sec){int h=sec/3600;sec%=3600;int m=sec/60;int s=sec%60;return new int[]{h,m,s};}
static int[] toHMS(int sec){int h=sec/3600;sec%=3600;int m=sec/60;int s=sec%60;return new int[]{h,m,s};}