結果

問題 No.289 数字を全て足そう
ユーザー FVRChanFVRChan
提出日時 2017-10-02 21:16:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 171 ms / 1,000 ms
コード長 490 bytes
コンパイル時間 2,001 ms
コンパイル使用メモリ 75,204 KB
実行使用メモリ 42,684 KB
最終ジャッジ日時 2024-11-15 22:41:59
合計ジャッジ時間 6,436 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,024 KB
testcase_01 AC 119 ms
41,000 KB
testcase_02 AC 119 ms
40,856 KB
testcase_03 AC 114 ms
41,020 KB
testcase_04 AC 120 ms
41,224 KB
testcase_05 AC 149 ms
42,388 KB
testcase_06 AC 132 ms
41,720 KB
testcase_07 AC 164 ms
42,080 KB
testcase_08 AC 162 ms
42,536 KB
testcase_09 AC 145 ms
41,860 KB
testcase_10 AC 146 ms
41,804 KB
testcase_11 AC 159 ms
42,196 KB
testcase_12 AC 164 ms
42,552 KB
testcase_13 AC 159 ms
42,320 KB
testcase_14 AC 170 ms
42,684 KB
testcase_15 AC 162 ms
42,396 KB
testcase_16 AC 162 ms
42,144 KB
testcase_17 AC 162 ms
42,140 KB
testcase_18 AC 170 ms
42,380 KB
testcase_19 AC 163 ms
42,360 KB
testcase_20 AC 161 ms
41,924 KB
testcase_21 AC 107 ms
40,892 KB
testcase_22 AC 171 ms
42,380 KB
testcase_23 AC 157 ms
41,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.LinkedList;
import java.util.Scanner;
public class Main{
	private static Scanner sc=new Scanner(System.in);
	public static void main(String args[])throws Exception{
		String s=sc.nextLine();
		int sum=0;
		s=s.replaceAll("[^0-9]","");
		LinkedList<Integer>queue=new LinkedList<Integer>();
		for(char element:s.toCharArray()){
			queue.offer(Character.getNumericValue(element));
		}while(queue.isEmpty()==false){
			sum+=queue.removeFirst();
		}System.out.println(sum);
	}
}
0