pre{ white-space: pre; } .entry-content pre{ word-wrap: normal; }

2018-03-28から1日間の記事一覧

深さ優先探索

以下のサイトの初めの方の問題を実装しました URL: https://www.slideshare.net/chokudai/wap-atcoder2 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int m = sc.nextInt…