結果

問題 No.432 占い(Easy)
ユーザー fjafjafjafjafjafja
提出日時 2017-09-10 00:58:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 688 bytes
コンパイル時間 3,229 ms
コンパイル使用メモリ 74,584 KB
実行使用メモリ 38,664 KB
最終ジャッジ日時 2024-11-07 10:22:47
合計ジャッジ時間 6,037 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,540 KB
testcase_01 AC 51 ms
36,912 KB
testcase_02 AC 52 ms
36,740 KB
testcase_03 AC 50 ms
36,716 KB
testcase_04 AC 50 ms
36,860 KB
testcase_05 AC 52 ms
36,832 KB
testcase_06 AC 54 ms
36,768 KB
testcase_07 AC 52 ms
36,540 KB
testcase_08 AC 53 ms
36,920 KB
testcase_09 AC 102 ms
38,452 KB
testcase_10 AC 58 ms
37,128 KB
testcase_11 AC 57 ms
37,128 KB
testcase_12 AC 82 ms
38,080 KB
testcase_13 AC 85 ms
38,204 KB
testcase_14 AC 60 ms
37,080 KB
testcase_15 AC 51 ms
37,112 KB
testcase_16 AC 51 ms
36,556 KB
testcase_17 AC 78 ms
37,944 KB
testcase_18 AC 76 ms
38,208 KB
testcase_19 AC 71 ms
38,336 KB
testcase_20 AC 60 ms
37,288 KB
testcase_21 AC 63 ms
36,812 KB
testcase_22 AC 62 ms
37,260 KB
testcase_23 AC 89 ms
38,072 KB
testcase_24 AC 106 ms
38,664 KB
testcase_25 AC 103 ms
38,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class N432
{
	public static void main(String[] args)throws IOException
	{
		BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
		int T=Integer.parseInt(br.readLine());
		for(int i=0;i<T;i++)
		{
			String str=br.readLine();
			int[] s=new int[str.length()];
			for(int j=0;j<str.length();j++)
			{
				s[j]=Integer.parseInt(str.substring(j, j+1));
			}
			for(int j=1;j<str.length();j++)
			{
				for(int k=0;k<str.length()-j;k++)
				{
					s[k]=s[k]+s[k+1];
					if(s[k]>=10){s[k]=1+s[k]%10;}
				}
			}
			System.out.println(s[0]);

		}
	}

}
0