結果

問題 No.340 雪の足跡
ユーザー Kilisame
提出日時 2016-06-08 12:06:20
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 315 bytes
コンパイル時間 2,501 ms
コンパイル使用メモリ 73,848 KB
実行使用メモリ 55,368 KB
最終ジャッジ日時 2024-10-09 02:56:37
合計ジャッジ時間 24,317 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 5
other WA * 22 TLE * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        Scanner cin = new Scanner(System.in);
        int scanCount = 0;
        while (cin.hasNext()) {
            String s = cin.next();
            scanCount++;
        }
        System.out.println(scanCount);
    }
}
0